Skip to content

Commit

Permalink
Test other method for release
Browse files Browse the repository at this point in the history
  • Loading branch information
mdeweerd committed Mar 15, 2022
1 parent a1309bf commit 2f2ac62
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,26 @@ jobs:
# --version ${{ steps.version.outputs.version }}
# - uses: stefanzweifel/git-auto-commit-action@v4
# with:
# commit_message: \[Bot\] Release - version update ${{ steps.version.outputs.version
# }}
# commit_message: \[Bot\] Release - Update V ${{
# steps.version.outputs.version }}
# commit_user_name: release
# commit_user_email: release@nill
# commit_author: release bot <release>
#
#

# Move the tag (tag name is in github.headref on published)
- name: Tag Repo
# Get the tag name
- name: Get the Ref
id: get-ref
uses: ankitvgupta/ref-to-tag-action@master
with:
ref: ${{ github.ref }}
head_ref: ${{ github.head_ref }}

# Move the tag
- name: Move Release Tag to include updated manifest
uses: richardsimko/update-tag@v1
with:
tag_name: ${{ github.head_ref }}
tag_name: ${{ steps.get-ref.outputs.tag }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down

0 comments on commit 2f2ac62

Please sign in to comment.