Skip to content

Commit

Permalink
ops: replace release action
Browse files Browse the repository at this point in the history
  • Loading branch information
amendoa committed Aug 25, 2021
1 parent 50bead3 commit f4941cd
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions .github/workflows/delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,21 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Bump version and push tag
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Create a GitHub release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.tag_version.outputs.new_tag }}
release_name: v1
body: ${{ steps.tag_version.outputs.changelog }}
tag_name: v1
# - name: Bump version and push tag
# id: tag_version
# uses: mathieudutour/[email protected]
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}

# - name: Create a GitHub release
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: v1
# release_name: v1
# body: ${{ steps.tag_version.outputs.changelog }}

0 comments on commit f4941cd

Please sign in to comment.