diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a69167e..c48d5ce 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -112,11 +112,6 @@ jobs: - name: Github checkout uses: actions/checkout@v4 - run: echo "previous_tag=$(git describe --tags --abbrev=0 2>/dev/null || echo '')" >> "$GITHUB_ENV" - - name: Test - run: | - echo $previous_tag; - echo ${env.previous_tag}; - echo ${{ env.previous_tag }} - name: Tag Release uses: jaywcjlove/create-tag-action@main if: env.previous_tag @@ -147,7 +142,8 @@ jobs: ${{ steps.changelog.outputs.compareurl }} ${{ steps.changelog.outputs.changelog }} - files: ${{ github.workspace }}/artifacts/**/* + files: + ${{ github.workspace }}/artifacts/**/* - name: Distribute Binaries to R2 if: steps.tag_release.outputs.successful diff --git a/scripts/collect-binaries.sh b/scripts/collect-binaries.sh index 2e6c5dd..4e44876 100755 --- a/scripts/collect-binaries.sh +++ b/scripts/collect-binaries.sh @@ -12,7 +12,9 @@ if [ ! -d artifacts ]; then fi if [[ $PLATFORM == "windows-latest" ]]; then + ls -l src-tauri\target\x86_64-pc-windows-msvc\release\bundle\nsis mv src-tauri\target\x86_64-pc-windows-msvc\release\bundle\nsis\*.exe artifacts\ + ls -l artifacts fi