Skip to content

Commit

Permalink
🛸 ci: switch action provider for GitHub releases
Browse files Browse the repository at this point in the history
  • Loading branch information
darvid committed Apr 11, 2022
1 parent dfc0a8e commit 08cf91d
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,15 +126,14 @@ jobs:
- name: Create release
id: create_release
if: ${{ steps.git_tag.outputs.current_tag == steps.package_version.outputs.release_version }}
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.package_version.outputs.release_version }}
release_name: Release ${{ steps.package_version.outputs.release_version }}
body_path: RELEASE_CHANGELOG
draft: false
name: Release ${{ steps.package_version.outputs.release_version }}
prerelease: false
tag_name: ${{ steps.package_version.outputs.release_version }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: Delete RELEASE_CHANGELOG
run: rm -f RELEASE_CHANGELOG
- name: Upload release assets
Expand Down

0 comments on commit 08cf91d

Please sign in to comment.