Fix CI tarball step
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
8200d30ed8
commit
8cb7a50e62
1 changed files with 9 additions and 3 deletions
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
@ -493,10 +493,14 @@ jobs:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
- name: Set up dependencies
|
||||||
|
run: |
|
||||||
|
sudo apt-get update -qq
|
||||||
|
sudo apt-get install -yqq liblo-dev
|
||||||
- name: Create source tarball
|
- name: Create source tarball
|
||||||
run: |
|
run: |
|
||||||
make tarball
|
make HEADLESS=true tarball
|
||||||
make tarball+deps
|
make HEADLESS=true tarball+deps
|
||||||
- name: Set sha8
|
- name: Set sha8
|
||||||
id: slug
|
id: slug
|
||||||
run: echo "::set-output name=sha8::$(echo ${{ github.sha }} | cut -c1-8)"
|
run: echo "::set-output name=sha8::$(echo ${{ github.sha }} | cut -c1-8)"
|
||||||
|
@ -504,7 +508,9 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: ${{ github.event.repository.name }}-win64-${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}
|
name: ${{ github.event.repository.name }}-win64-${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}
|
||||||
path: |
|
path: |
|
||||||
../cardinal-*.tar.xz
|
/home/runner/cardinal-*.tar.xz
|
||||||
|
/home/runner/*/cardinal-*.tar.xz
|
||||||
|
/home/runner/*/*/cardinal-*.tar.xz
|
||||||
|
|
||||||
plugin-validation:
|
plugin-validation:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue