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 }}