mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-10 12:44:57 -05:00
fix(ci): only upload keysetcache on master
This commit is contained in:
4
.github/workflows/continuous-integration.yml
vendored
4
.github/workflows/continuous-integration.yml
vendored
@@ -79,7 +79,7 @@ jobs:
|
||||
chmod -R ugo+rwx /tmp/KeySetCache
|
||||
|
||||
- name: Upload KeySetCache
|
||||
if: ${{ matrix.compiler == 'gcc7' }} && github.ref == 'refs/heads/master'
|
||||
if: ${{ matrix.compiler == 'gcc7' && github.ref == 'refs/heads/master' }}
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: KeySetCache
|
||||
@@ -88,7 +88,7 @@ jobs:
|
||||
|
||||
- name: Cleanup Old KeySetCache
|
||||
uses: Remagpie/gha-remove-artifact@v1
|
||||
if: ${{ matrix.compiler == 'gcc7' }} && github.ref == 'refs/heads/master'
|
||||
if: ${{ matrix.compiler == 'gcc7' && github.ref == 'refs/heads/master' }}
|
||||
with:
|
||||
only-name: KeySetCache
|
||||
max-count: 1
|
||||
|
||||
Reference in New Issue
Block a user