0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Fixed branch name in canary workflow

- `github.ref_name` is a more reliable way to find the branch name than
  we were previously doing
This commit is contained in:
Daniel Lockyer 2024-09-24 10:37:24 +02:00 committed by Daniel Lockyer
parent 24447f438e
commit ca691e99e8

View file

@ -47,10 +47,6 @@ jobs:
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
- name: Get branch name
id: branch_name
run: echo "BRANCH_NAME=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_OUTPUT
- name: Get metadata (push)
if: github.event_name == 'push'
run: |
@ -183,7 +179,7 @@ jobs:
changed_any_code: ${{ steps.changed.outputs.any-code }}
changed_new_package: ${{ steps.added.outputs.new-package }}
base_commit: ${{ env.BASE_COMMIT }}
branch_name: ${{ steps.branch_name.outputs.BRANCH_NAME }}
branch_name: ${{ github.ref_name }}
is_canary_branch: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/arch') }}
is_main: ${{ env.IS_MAIN }}
has_browser_tests_label: ${{ github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'browser-tests') }}