Skip to content

Commit

Permalink
Revert release tag creation & add tag environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaskioko committed Dec 25, 2021
1 parent b026d71 commit a97764a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/package-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,13 @@ jobs:
with:
bump_version_scheme: minor
tag_prefix: v
release_name: "release-<RELEASE_VERSION>"
release_name: "release_<RELEASE_VERSION>"

- name: Access tag name of current workflow
run: |
echo "RELEASE_VERSION=${{ steps.release.outputs.version }}" >> $GITHUB_ENV
echo "RELEASE_TAG=${{ steps.release.outputs.tag_name }}" >> $GITHUB_ENV
echo "TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
- name: Create release branch on package repo
uses: GuillaumeFalourd/create-other-repo-branch-action@v1
Expand Down

0 comments on commit a97764a

Please sign in to comment.