diff options
| author | seth <[email protected]> | 2023-09-03 15:06:56 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-09-03 15:18:59 -0400 |
| commit | 4507d98a8bb2da8fc9f1cbdc371ba8eaef2ae949 (patch) | |
| tree | ea467a44751a1763325e3600d2586e0fb4e58634 | |
| parent | 41a17b7b3757351d3679093c075acc08a72a8bf0 (diff) | |
actions: don't wait on garnix for image upload
| -rw-r--r-- | .github/workflows/upload.yaml | 14 | ||||
| -rw-r--r-- | garnix.yaml | 3 |
2 files changed, 7 insertions, 10 deletions
diff --git a/.github/workflows/upload.yaml b/.github/workflows/upload.yaml index 4d4c557..2bf3a0e 100644 --- a/.github/workflows/upload.yaml +++ b/.github/workflows/upload.yaml @@ -3,20 +3,15 @@ name: upload to registry # changes are made to `main` on: - check_suite: - types: [completed] - -# https://github.com/garnix-io/issues/issues/63 -concurrency: - group: upload-${{ github.ref }} - cancel-in-progress: true + push: + branches: + - main permissions: packages: write jobs: upload: - if: github.actor != 'dependabot[bot]' runs-on: ubuntu-latest env: @@ -25,7 +20,8 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: cachix/install-nix-action@v22 + - uses: DeterminateSystems/nix-installer-action@main + - uses: DeterminateSystems/magic-nix-cache-action@main - name: fetch docker image run: | diff --git a/garnix.yaml b/garnix.yaml index 64bee81..9458456 100644 --- a/garnix.yaml +++ b/garnix.yaml @@ -1,5 +1,6 @@ builds: - exclude: [] + exclude: + - "packages.x86_64-linux.container" include: - "checks.x86_64-linux.*" - "packages.x86_64-linux.*" |
