Skip to content

Commit

Permalink
ci: fix branch refs, release-prerelease.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
angusbayley committed Feb 27, 2025
1 parent 07b1e73 commit c92a8b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
with:
commit_message: "chore(prerelease): :rocket: release prerelease [${{ env.LLD }}, ${{ env.LLM }}]"
repo: ${{ github.repository }}
branch: $RELEASE_BRANCH
branch: ${{ github.ref_name }}
- name: commit (from hotfix branch)
if: ${{ startsWith(github.ref_name, 'hotfix') }}
env:
Expand All @@ -111,7 +111,7 @@ jobs:
with:
commit_message: "chore(hotfix): :fire: hotfix prerelease [${{ env.LLD }}, ${{ env.LLM }}]"
repo: ${{ github.repository }}
branch: $RELEASE_BRANCH
branch: ${{ github.ref_name }}
- name: commit (from ${{ inputs.ref }} branch) workflow dispatch
if: ${{ github.event_name == 'workflow_dispatch' }}
env:
Expand All @@ -122,7 +122,7 @@ jobs:
with:
commit_message: "chore(prerelease): :rocket: ${{ inputs.ref }} prerelease [LLD(${{ steps.post-desktop-version.outputs.version }}), LLM(${{ steps.post-mobile-version.outputs.version }})]"
repo: ${{ github.repository }}
branch: $RELEASE_BRANCH
branch: ${{ inputs.ref }}
- name: authenticate with npm
uses: actions/setup-node@v4
with:
Expand Down

0 comments on commit c92a8b2

Please sign in to comment.