-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (40 loc) · 1.35 KB
/
publish.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: release
on:
workflow_run:
workflows: ["Zarf Injector Update"] # Name of the Zarf injector workflow
types:
- completed
jobs:
release:
runs-on: ubuntu-latest
permissions:
# id-token: write # needed for keyless signing
contents: read
packages: write # needed for ghcr access
strategy:
matrix:
flavor:
- registry1
- gitea-registry1
steps:
- uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to registry1
uses: docker/login-action@v3
with:
registry: registry1.dso.mil
username: ${{ secrets.IRON_BANK_ROBOT_USERNAME }}
password: ${{ secrets.IRON_BANK_ROBOT_PASSWORD }}
- name: Install Zarf
uses: defenseunicorns/setup-zarf@main
with:
# renovate: datasource=docker depName=registry1.dso.mil/ironbank/opensource/defenseunicorns/zarf/zarf-agent
version: v0.42.0
download-init-package: false
- name: Build and Publish IB Package
run: zarf package create --confirm --output oci://ghcr.io/defenseunicorns/delivery-zarf-init --no-progress --flavor ${{ matrix.flavor }}