attempt 2
This commit is contained in:
parent
23f599d5d0
commit
1adc837d12
1 changed files with 2 additions and 2 deletions
4
.github/workflows/native-build.yml
vendored
4
.github/workflows/native-build.yml
vendored
|
|
@ -48,7 +48,7 @@ jobs:
|
||||||
ref: ${{ env.TAG_NAME }}
|
ref: ${{ env.TAG_NAME }}
|
||||||
|
|
||||||
- name: Overwrite app.spec from workflow branch
|
- name: Overwrite app.spec from workflow branch
|
||||||
if: github.event.inputs.useWorkflowSpec == true
|
if: ${{ github.event.inputs.useWorkflowSpec == 'true' }}
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.ref }}
|
ref: ${{ github.ref }}
|
||||||
|
|
@ -58,7 +58,7 @@ jobs:
|
||||||
path: temp-spec
|
path: temp-spec
|
||||||
|
|
||||||
- name: Replace app.spec with version from workflow branch
|
- name: Replace app.spec with version from workflow branch
|
||||||
if: github.event.inputs.useWorkflowSpec == true
|
if: ${{ github.event.inputs.useWorkflowSpec == 'true' }}
|
||||||
run: cp temp-spec/app.spec ./app.spec
|
run: cp temp-spec/app.spec ./app.spec
|
||||||
|
|
||||||
- name: Cache Python venv
|
- name: Cache Python venv
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue