Skip to content

Commit

Permalink
Github Actions: Fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
proprietary committed Jun 4, 2024
1 parent cc084a9 commit e3719a3
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/objective-c-xcode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,14 @@ jobs:
run: make

- name: Create Release
id: create_release
uses: softprops/action-gh-release@v2
with:
draft: false
prerelease: false
files: |
trash
name: ${{ github.ref }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: >-
ls -la;
gh release create ${{ github.ref }}
--title ${{ github.ref }}
--notes "Release ${{ github.ref }}"
--draft false
--prerelease false
--repo ${{ github.repository }}
./trash

0 comments on commit e3719a3

Please sign in to comment.