chore: Reproducible archive should include the whole project, not just the web subdir

This commit is contained in:
David Wendt 2023-01-23 20:08:01 -05:00 committed by kmeisthax
parent 7d234956eb
commit cfa259fe57
1 changed files with 7 additions and 2 deletions

View File

@ -314,13 +314,18 @@ jobs:
run: |
npm ci
- name: Produce reproducible source archive
- name: Seal version data
if: ${{ !matrix.demo }}
shell: bash -l {0}
working-directory: web
env:
ENABLE_VERSION_SEAL: "true"
run: node packages/core/tools/set_version.js && zip -r ../reproducible-source.zip .
run: node packages/core/tools/set_version.js
- name: Produce reproducible source archive
if: ${{ !matrix.demo }}
shell: bash -l {0}
run: zip -r reproducible-source.zip .
- name: Upload reproducible source archive
if: ${{ !matrix.demo }}