diff --git a/.github/workflows/release-branches.yml b/.github/workflows/release-branches.yml index bb182f1..29268ad 100644 --- a/.github/workflows/release-branches.yml +++ b/.github/workflows/release-branches.yml @@ -12,6 +12,9 @@ on: jobs: release: + needs: + - build-artifacts-macOS + - build-artifacts-Linux concurrency: release runs-on: ubuntu-latest permissions: diff --git a/.github/workflows/release-prs.yml b/.github/workflows/release-prs.yml index c8d3c5e..58928d1 100644 --- a/.github/workflows/release-prs.yml +++ b/.github/workflows/release-prs.yml @@ -10,9 +10,12 @@ on: jobs: release: + needs: + - build-artifacts-macOS + - build-artifacts-Linux concurrency: release # Only intra-repo PRs are allowed to have PR artifacts uploaded - if: github.event.pull_request.head.repo.full_name == 'DeterminateSystems/nix-installer' && contains(github.event.pull_request.labels.*.name, 'upload to s3') + if: github.event.pull_request.head.repo.full_name == 'DeterminateSystems/nix-actions-cache' && contains(github.event.pull_request.labels.*.name, 'upload to s3') runs-on: ubuntu-latest permissions: id-token: write # In order to request a JWT for AWS auth diff --git a/.github/workflows/release-tags.yml b/.github/workflows/release-tags.yml index a8bfe43..bf3a86d 100644 --- a/.github/workflows/release-tags.yml +++ b/.github/workflows/release-tags.yml @@ -7,6 +7,9 @@ on: jobs: release: + needs: + - build-artifacts-macOS + - build-artifacts-Linux concurrency: release runs-on: ubuntu-latest permissions: