Merge pull request #5470 from thornbill/master

Fix branch ref in publish action
This commit is contained in:
Joshua M. Boniface
2024-05-09 15:03:57 -04:00
committed by GitHub
2 changed files with 9 additions and 2 deletions
+3
View File
@@ -57,9 +57,11 @@ jobs:
steps:
- name: Save PR context
env:
PR_BRANCH: ${{ github.ref_name }}
PR_NUMBER: ${{ github.event.number }}
PR_SHA: ${{ github.event.pull_request.head.sha }}
run: |
echo $PR_BRANCH > PR_branch
echo $PR_NUMBER > PR_number
echo $PR_SHA > PR_sha
@@ -68,5 +70,6 @@ jobs:
with:
name: PR_context
path: |
PR_branch
PR_number
PR_sha