Skip to content
This repository has been archived by the owner on Feb 15, 2025. It is now read-only.

dependency between jobs #149

Merged
merged 1 commit into from
Jul 14, 2023
Merged
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
5 changes: 4 additions & 1 deletion .github/workflows/docker-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- main

jobs:
api:
images:
runs-on: ubuntu-latest

steps:
Expand All @@ -23,6 +23,7 @@ jobs:
run: make base base-push api api-push
zarf:
runs-on: ubuntu-latest
needs: images
steps:
- name: Check out code
uses: actions/checkout@v2
Expand All @@ -38,6 +39,8 @@ jobs:
# renovate: datasource=github-tags depName=defenseunicorns/zarf versioning=semver
version: v0.28.2
download-init-package: false
- name: Run Makefile command
run: make api base repeater
- name: Build Zarf Package
# just building, not pushing them
run: zarf package create . --confirm
Expand Down