From 62e09c891c9198cee5098812b8cc14ca97fd5b11 Mon Sep 17 00:00:00 2001 From: Mark Anderson Date: Thu, 9 Nov 2023 13:55:19 -0500 Subject: [PATCH] chore: Update release.yml Remove version number from zip to allow `latest` --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cb5ec0b..8a837ab 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,9 +16,9 @@ jobs: - name: Build for Release run: swift build -c release --arch arm64 --arch x86_64 --product cap2spm - name: Zip Executable - run: zip -j cap2spm-${{ github.ref_name }}.zip .build/apple/Products/Release/cap2spm + run: zip -j cap2spm.zip .build/apple/Products/Release/cap2spm - name: Create Release uses: softprops/action-gh-release@v1 with: - files: cap2spm-${{ github.ref_name }}.zip + files: cap2spm.zip token: ${{ secrets.GITHUB_TOKEN }}