Skip to content

Commit

Permalink
Allow releasing a non-master branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
yruslan committed Mar 26, 2024
1 parent e962da9 commit 04f9731
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: master
ref: ${{ github.head_ref || github.ref_name }}

- name: Setup JDK and sbt
uses: actions/setup-java@v4
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: master
ref: ${{ github.head_ref || github.ref_name }}

- name: Checkout the release branch
id: release_branch3
Expand Down

0 comments on commit 04f9731

Please sign in to comment.