Skip to content

Commit

Permalink
add create-github-release job
Browse files Browse the repository at this point in the history
  • Loading branch information
czelabueno committed Jan 9, 2025
1 parent e4ba0d4 commit e6c098d
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,19 @@ jobs:
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
create-github-release:
name: Create GitHub Release
needs: release
runs-on: ubuntu-latest
steps:
- name: Create GitHub Release
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
run: |
gh release create "$tag" \
--repo "${{ github.repository }}" \
--title "$tag" \
--generate-notes \
--latest
create-github-release:
name: Create GitHub Release
needs: release
runs-on: ubuntu-latest
steps:
- name: Create GitHub Release
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
run: |
gh release create "$tag" \
--repo "${{ github.repository }}" \
--title "$tag" \
--generate-notes \
--latest

0 comments on commit e6c098d

Please sign in to comment.