Set the current_branch for release actions

Resolves: #50
This commit is contained in:
Tonye Jack 2021-05-25 12:23:47 -04:00 committed by GitHub
parent 156e33c8e9
commit a9ebb75435
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,9 +33,9 @@ runs:
- id: branch - id: branch
run: | run: |
if [[ "${{ github.ref }}" != "refs/tags/"* ]]; then if [[ "${{ github.ref }}" != "refs/tags/"* ]]; then
export BASE_REF=${{ github.base_ref }} BASE_REF=${{ github.base_ref }}
export HEAD_REF=${{ github.head_ref }} HEAD_REF=${{ github.head_ref }}
export REF=${{ github.ref }} REF=${{ github.ref }}
echo "::set-output name=base_ref_branch::${BASE_REF/refs\/heads\//}" echo "::set-output name=base_ref_branch::${BASE_REF/refs\/heads\//}"
echo "::set-output name=head_ref_branch::${HEAD_REF/refs\/heads\//}" echo "::set-output name=head_ref_branch::${HEAD_REF/refs\/heads\//}"
REF_BRANCH=${REF/refs\/pull\//} REF_BRANCH=${REF/refs\/pull\//}
@ -63,7 +63,9 @@ runs:
- id: tag - id: tag
run: | run: |
if [[ "${{ github.ref }}" == "refs/tags/"* ]]; then if [[ "${{ github.ref }}" == "refs/tags/"* ]]; then
export REF=${{ github.ref }} REF=${{ github.ref }}
REF_BRANCH=${REF/refs\/tags\//}
echo "::set-output name=current_branch::$REF_BRANCH"
TAG=${REF/refs\/tags\/${{ inputs.strip_tag_prefix }}/} TAG=${REF/refs\/tags\/${{ inputs.strip_tag_prefix }}/}
echo "::set-output name=tag::$TAG" echo "::set-output name=tag::$TAG"
fi fi