Skip to content

Commit

Permalink
Update workflow patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
ianpittwood committed Apr 9, 2024
1 parent be1a343 commit 6ddeb65
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-bake-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
CONNECT_DAILY_VERSION=$(just -f ci.Justfile get-version connect --type=daily --local)
echo "CONNECT_DAILY_VERSION=$CONNECT_DAILY_VERSION" >> $GITHUB_OUTPUT
- name: Build and test
- name: Build
id: build
uses: docker/bake-action@v4
env:
Expand All @@ -72,13 +72,13 @@ jobs:
set: |
*.cache-from=type=gha
*.cache-to=type=gha,compression=zstd
targets: "build-test"
targets: "build"
push: false
files: docker-bake.preview.hcl

- name: Test Connect (privileged container)
run: |
just -f build.justfile test-connect-preview
just -f build.justfile preview-test
- name: Push
id: push
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-bake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@ jobs:
with:
buildkitd-config: ./share/buildkitd.toml

- name: Build and test
- name: Build
id: build
uses: docker/bake-action@v4
with:
set: |
*.cache-from=type=gha
*.cache-to=type=gha,compression=zstd
targets: "build-test"
targets: "build"
push: false

- name: Test Connect (privileged container)
- name: Test
run: |
just -f build.justfile test-connect
just -f build.justfile test
- name: Push
id: push
Expand Down

0 comments on commit 6ddeb65

Please sign in to comment.