mirror of
https://github.com/netbootxyz/netboot.xyz.git
synced 2026-01-23 02:34:26 +00:00
Ensure proper release is checked out
CI may have been checking out development even though it was doing everything else for release branch so when tags were applied it was applied on the wrong branch. Development and master should have been near the same except for release bump. Hard setting the checkout to the proper branch should fix this. Closes: https://github.com/netbootxyz/netboot.xyz/issues/1294
This commit is contained in:
parent
a5128fc3b8
commit
acedd58881
3 changed files with 6 additions and 0 deletions
2
.github/workflows/development.yml
vendored
2
.github/workflows/development.yml
vendored
|
|
@ -19,6 +19,8 @@ jobs:
|
|||
contents: read
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
ref: development
|
||||
|
||||
- name: Retrieve Certs
|
||||
run: |
|
||||
|
|
|
|||
2
.github/workflows/release-candidate.yml
vendored
2
.github/workflows/release-candidate.yml
vendored
|
|
@ -19,6 +19,8 @@ jobs:
|
|||
contents: write
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
ref: RC
|
||||
|
||||
- name: Retrieve Certs
|
||||
run: |
|
||||
|
|
|
|||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
|
@ -18,6 +18,8 @@ jobs:
|
|||
contents: write
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
ref: master
|
||||
|
||||
- name: Retrieve Certs
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue