Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand All @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/session.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ 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 }}
DOCKER_HUB_README_PASSWORD: ${{ secrets.DOCKER_HUB_README_PASSWORD }}
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
Expand Down
Loading