From 145daa73ef9d01e52bb9c817021b998336b826c8 Mon Sep 17 00:00:00 2001 From: Dustin Blackman Date: Thu, 30 Nov 2023 09:14:13 -0500 Subject: [PATCH] fix: File permissions in releases --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 3a67704..25e9323 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -98,6 +98,7 @@ release = '''set -e mkdir dist-gh export GH_RUN_ID=$(cargo gha gh run list -R dustinblackman/languagetool-code-comments -w build --json databaseId | jq -rc '.[0].databaseId') cargo gha gh run download -D dist-gh $GH_RUN_ID + fd -t f . './dist-gh' | xargs -L1 chmod +x export LTCC_VERSION=$(cat Cargo.toml | grep version | head -n1 | awk -F '"' '{print $2}') cargo bin git-cliff -o CHANGELOG.md --tag "v$LTCC_VERSION"