diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml index 7ac6dc7..7f1c13b 100644 --- a/.github/workflows/development.yml +++ b/.github/workflows/development.yml @@ -65,14 +65,14 @@ jobs: contents: read packages: write - uses: "posit-dev/images-shared/.github/workflows/bakery-build-native.yml@main" + uses: "posit-dev/images-shared/.github/workflows/bakery-build-native.yml@feat/dry-run-artifacts" with: dev-versions: "only" matrix-versions: "exclude" image-version: ${{ inputs.version }} dev-stream: ${{ inputs.stream }} # Push on merges to main, scheduled rebuilds, and dispatches targeting main. - push: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/main' }} + push: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/main' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/main') && 'on' || 'off' }} clean: name: Clean diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 0782b69..09d7056 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -47,7 +47,7 @@ jobs: permissions: contents: read packages: write - uses: posit-dev/images-shared/.github/workflows/bakery-build-pr.yml@main + uses: posit-dev/images-shared/.github/workflows/bakery-build-pr.yml@feat/dry-run-artifacts with: dev-versions: "exclude" matrix-versions: "exclude" @@ -57,7 +57,7 @@ jobs: permissions: contents: read packages: write - uses: posit-dev/images-shared/.github/workflows/bakery-build-pr.yml@main + uses: posit-dev/images-shared/.github/workflows/bakery-build-pr.yml@feat/dry-run-artifacts with: dev-versions: "only" matrix-versions: "exclude" @@ -67,7 +67,7 @@ jobs: permissions: contents: read packages: write - uses: posit-dev/images-shared/.github/workflows/bakery-build-pr.yml@main + uses: posit-dev/images-shared/.github/workflows/bakery-build-pr.yml@feat/dry-run-artifacts with: matrix-versions: "only" diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index 4cac7f0..e02d667 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -53,7 +53,7 @@ jobs: contents: read packages: write - uses: "posit-dev/images-shared/.github/workflows/bakery-build-native.yml@main" + uses: "posit-dev/images-shared/.github/workflows/bakery-build-native.yml@feat/dry-run-artifacts" secrets: DOCKER_HUB_ACCESS_TOKEN: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} DOCKER_HUB_README_USERNAME: ${{ secrets.DOCKER_HUB_README_USERNAME }} @@ -62,7 +62,7 @@ jobs: dev-versions: "exclude" matrix-versions: "exclude" # Push images only for merges into main and weekly schduled re-builds. - push: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/main' }} + push: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/main' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/main') && 'on' || 'off' }} clean: name: Clean diff --git a/.github/workflows/session.yml b/.github/workflows/session.yml index 5e7abcb..3fe0d49 100644 --- a/.github/workflows/session.yml +++ b/.github/workflows/session.yml @@ -51,7 +51,7 @@ jobs: contents: read packages: write - uses: "posit-dev/images-shared/.github/workflows/bakery-build-native.yml@main" + uses: "posit-dev/images-shared/.github/workflows/bakery-build-native.yml@feat/dry-run-artifacts" secrets: DOCKER_HUB_ACCESS_TOKEN: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} DOCKER_HUB_README_USERNAME: ${{ secrets.DOCKER_HUB_README_USERNAME }} @@ -59,7 +59,7 @@ jobs: with: matrix-versions: only # Push images only for merges into main and weekly schduled re-builds. - push: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/main' }} + push: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/main' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/main') && 'on' || 'off' }} clean: name: Clean