Skip to content

Commit

Permalink
replace outdated action for creating a release
Browse files Browse the repository at this point in the history
This is related to #45.
  • Loading branch information
lueck committed Nov 15, 2024
1 parent b257974 commit ad3609a
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,15 @@ jobs:
path: target/descriptor.xml
retention-days: 1

- name: create release
uses: actions/create-release@v1
id: create_release
with:
draft: false
prerelease: false
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body_path: CHANGES.md
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
run: |
gh release create "$tag" \
--repo="$GITHUB_REPOSITORY" \
--title="${GITHUB_REPOSITORY#*/} ${tag}" \
--generate-notes
- name: upload SEED package to release
uses: actions/upload-release-asset@v1
Expand Down

0 comments on commit ad3609a

Please sign in to comment.