Update build.yml

This commit is contained in:
Jay Lee
2022-09-02 16:31:42 -04:00
committed by GitHub
parent 1f32536ff7
commit 11e6c80dbf

View File

@@ -71,6 +71,7 @@ jobs:
arch: x86_64 arch: x86_64
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with: with:
persist-credentials: false persist-credentials: false
@@ -81,8 +82,13 @@ jobs:
id: cache-python-ssl id: cache-python-ssl
with: with:
path: | path: |
bin bin.tar.xz
key: gam-${{ matrix.jid }}-20220901 key: gam-${{ matrix.jid }}-20220901-01
- name: Untar Cache archive
if: steps.cache-python-ssl.outputs.cache-hit == 'true'
run: |
tar xvvf bin.tar.xz
- name: Use pre-compiled Python for testing - name: Use pre-compiled Python for testing
if: matrix.python != '' if: matrix.python != ''
@@ -709,6 +715,11 @@ jobs:
src/*.zip src/*.zip
src/*.msi src/*.msi
- name: Tar Cache archive
if: steps.cache-python-ssl.outputs.cache-hit != 'true'
run: |
tar cJvvf bin.tar.xz bin/
publish: publish:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: build needs: build