build: add flag to disable snaps

This commit is contained in:
Baptiste Augrain
2024-06-13 20:16:43 +02:00
parent 5a769efcb9
commit 60ebbedbf8
2 changed files with 4 additions and 2 deletions

View File

@@ -419,6 +419,7 @@ jobs:
- build
runs-on: ubuntu-latest
env:
DISABLE_SNAP: ${{ secrets.DISABLE_SNAP }}
RELEASE_VERSION: ${{ needs.check.outputs.RELEASE_VERSION }}
SNAP_NAME: codium-insiders
strategy:
@@ -427,7 +428,7 @@ jobs:
platform:
- amd64
- arm64
if: needs.check.outputs.SHOULD_DEPLOY == 'yes' && secrets.DISABLE_SNAP != 'yes'
if: needs.check.outputs.SHOULD_DEPLOY == 'yes' && env.DISABLE_SNAP != 'yes'
steps:
- uses: actions/checkout@v3

View File

@@ -415,6 +415,7 @@ jobs:
- build
runs-on: ubuntu-latest
env:
DISABLE_SNAP: ${{ secrets.DISABLE_SNAP }}
RELEASE_VERSION: ${{ needs.check.outputs.RELEASE_VERSION }}
SNAP_NAME: codium
strategy:
@@ -423,7 +424,7 @@ jobs:
platform:
- amd64
- arm64
if: needs.check.outputs.SHOULD_DEPLOY == 'yes' && secrets.DISABLE_SNAP != 'yes'
if: needs.check.outputs.SHOULD_DEPLOY == 'yes' && env.DISABLE_SNAP != 'yes'
steps:
- uses: actions/checkout@v3