Skip to content

Commit 24c7022

Browse files
authored
Merge pull request #101 from sewcio543/gha/release_hotfix
[FIX] Deployment build
2 parents 5d5e521 + ac452df commit 24c7022

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/development_release.yml

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
- name: Checkout code
4242
uses: actions/checkout@v4
4343
with:
44+
ref: ${{ github.ref }} # checkout at latest commit from previous job
4445
fetch-depth: 0
4546

4647
- name: Set up Python and Upgrade pip

.github/workflows/production_release.yml

+3
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ jobs:
3939
steps:
4040
- name: Checkout code
4141
uses: actions/checkout@v4
42+
with:
43+
ref: ${{ github.ref }} # checkout at latest commit from previous job
44+
fetch-depth: 0
4245

4346
- name: Set up Python and Upgrade pip
4447
uses: ./.github/actions/setup_python

0 commit comments

Comments
 (0)