Browse Source

Fix CI tarball step

Signed-off-by: falkTX <falktx@falktx.com>
tags/22.02
falkTX 3 years ago
parent
commit
8cb7a50e62
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 9 additions and 3 deletions
  1. +9
    -3
      .github/workflows/build.yml

+ 9
- 3
.github/workflows/build.yml View File

@@ -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 tarball+deps
make HEADLESS=true tarball
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…
Cancel
Save