Skip to content

Commit

Permalink
Fix more typos in github release workflow (#5704)
Browse files Browse the repository at this point in the history
  • Loading branch information
maggie-lou authored Jan 12, 2024
1 parent 57c0d79 commit 0a9b477
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/create-github-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,26 @@ jobs:
if: "!contains(github.event.head_commit.message, 'release skip')"
needs: create-release
with:
release_branch: ${GITHUB_REF}
version_tag: ${GITHUB_REF/refs\/tags\//}
release_branch: ${{ github.ref }}
version_tag: ${{ github.ref_name }}
secrets: inherit

build-mac-intel-artifacts:
uses: ./.github/workflows/build-mac-intel-github-release-artifacts.yaml
if: "!contains(github.event.head_commit.message, 'release skip')"
needs: create-release
with:
release_branch: ${GITHUB_REF}
version_tag: ${GITHUB_REF/refs\/tags\//}
release_branch: ${{ github.ref }}
version_tag: ${{ github.ref_name }}
secrets: inherit

build-mac-m1-artifacts:
uses: ./.github/workflows/build-mac-m1-github-release-artifacts.yaml
if: "!contains(github.event.head_commit.message, 'release skip')"
needs: create-release
with:
release_branch: ${GITHUB_REF}
version_tag: ${GITHUB_REF/refs\/tags\//}
release_branch: ${{ github.ref }}
version_tag: ${{ github.ref_name }}
secrets: inherit

slack_on_failure:
Expand Down

0 comments on commit 0a9b477

Please sign in to comment.