test release #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
release: | |
types: | |
- published | |
name: Publish OCI images | |
permissions: read-all | |
jobs: | |
push-singlearch-image: | |
name: Push single arch OCI images to GitHub Packages | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
strategy: | |
matrix: | |
os: [linux, darwin] | |
arch: [amd64, arm64] | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Log in to GitHub Docker Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push zot container image | |
uses: project-stacker/stacker-build-push-action@main | |
with: | |
file: 'build/stacker.yaml' | |
build-args: | | |
RELEASE_TAG=${{ github.event.release.tag_name }} | |
COMMIT=${{ github.event.release.tag_name }}-${{ github.sha }} | |
OS=${{ matrix.os }} | |
ARCH=${{ matrix.arch }} | |
REPO_NAME=zot-${{ matrix.os }}-${{ matrix.arch }} | |
url: docker://ghcr.io/${{ github.repository_owner }} | |
tags: ${{ github.event.release.tag_name }} latest | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push zot-minimal container image | |
uses: project-stacker/stacker-build-push-action@main | |
with: | |
file: 'build/stacker-minimal.yaml' | |
build-args: | | |
RELEASE_TAG=${{ github.event.release.tag_name }} | |
COMMIT=${{ github.event.release.tag_name }}-${{ github.sha }} | |
OS=${{ matrix.os }} | |
ARCH=${{ matrix.arch }} | |
EXT=-minimal | |
REPO_NAME=zot-minimal-${{ matrix.os }}-${{ matrix.arch }} | |
url: docker://ghcr.io/${{ github.repository_owner }} | |
tags: ${{ github.event.release.tag_name }} latest | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push zot-exporter container image | |
uses: project-stacker/stacker-build-push-action@main | |
with: | |
file: 'build/stacker-zxp.yaml' | |
build-args: | | |
RELEASE_TAG=${{ github.event.release.tag_name }} | |
COMMIT=${{ github.event.release.tag_name }}-${{ github.sha }} | |
OS=${{ matrix.os }} | |
ARCH=${{ matrix.arch }} | |
REPO_NAME=zxp-${{ matrix.os }}-${{ matrix.arch }} | |
url: docker://ghcr.io/${{ github.repository_owner }} | |
tags: ${{ github.event.release.tag_name }} latest | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push zb container image | |
uses: project-stacker/stacker-build-push-action@main | |
with: | |
file: 'build/stacker-zb.yaml' | |
build-args: | | |
RELEASE_TAG=${{ github.event.release.tag_name }} | |
COMMIT=${{ github.event.release.tag_name }}-${{ github.sha }} | |
OS=${{ matrix.os }} | |
ARCH=${{ matrix.arch }} | |
REPO_NAME=zb-${{ matrix.os }}-${{ matrix.arch }} | |
url: docker://ghcr.io/${{ github.repository_owner }} | |
tags: ${{ github.event.release.tag_name }} latest | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
push-multiarch-image: | |
name: Push multiarch OCI images to GitHub Packages | |
needs: push-singlearch-image | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
strategy: | |
matrix: | |
image: [zot, zot-minimal, zxp, zb] | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Log in to GitHub Docker Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run build | |
run: | | |
echo "Building multiarch image for ${{ matrix.image }}" | |
cd $GITHUB_WORKSPACE | |
make check-blackbox-prerequisites | |
export PATH=${PATH}:${GITHUB_WORKSPACE}/hack/tools/bin | |
./scripts/build_multiarch_image.sh --registry ghcr.io/${{ github.repository_owner }} \ | |
--source-tag ${{ github.event.release.tag_name }} \ | |
--destination-tags "${{ github.event.release.tag_name }} latest" \ | |
--file build/multiarch-${{ matrix.image }}.json | |
test-image: | |
name: Test OCI images published to GitHub Packages | |
needs: push-multiarch-image | |
runs-on: ubuntu-latest | |
permissions: | |
packages: read | |
steps: | |
- name: Log in to GitHub Docker Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run zot container image with docker | |
run: | | |
docker run -d -p 5000:5000 ghcr.io/${{ github.repository_owner }}/zot:${{ github.event.release.tag_name }} | |
sleep 2 | |
curl --connect-timeout 5 \ | |
--max-time 10 \ | |
--retry 12 \ | |
--retry-max-time 360 \ | |
--retry-connrefused \ | |
'http://localhost:5000/v2/' | |
docker kill $(docker ps -q) | |
- name: Run zot container image with podman | |
run: | | |
podman run -d -p 5000:5000 ghcr.io/${{ github.repository_owner }}/zot:${{ github.event.release.tag_name }} | |
sleep 2 | |
curl --connect-timeout 5 \ | |
--max-time 10 \ | |
--retry 12 \ | |
--retry-max-time 360 \ | |
--retry-connrefused \ | |
'http://localhost:5000/v2/' | |
podman kill --all | |
- name: Run zot-minimal container image with docker | |
run: | | |
docker run -d -p 5000:5000 ghcr.io/${{ github.repository_owner }}/zot-minimal:${{ github.event.release.tag_name }} | |
sleep 2 | |
curl --connect-timeout 5 \ | |
--max-time 10 \ | |
--retry 12 \ | |
--retry-max-time 360 \ | |
--retry-connrefused \ | |
'http://localhost:5000/v2/' | |
docker kill $(docker ps -q) | |
- name: Run zot-minimal container image with podman | |
run: | | |
podman run -d -p 5000:5000 ghcr.io/${{ github.repository_owner }}/zot-minimal:${{ github.event.release.tag_name }} | |
sleep 2 | |
curl --connect-timeout 5 \ | |
--max-time 10 \ | |
--retry 12 \ | |
--retry-max-time 360 \ | |
--retry-connrefused \ | |
'http://localhost:5000/v2/' | |
podman kill --all | |
- name: Run zot-exporter container image with docker | |
run: | | |
docker run -d -p 5001:5001 ghcr.io/${{ github.repository_owner }}/zxp:${{ github.event.release.tag_name }} | |
sleep 2 | |
curl --connect-timeout 5 \ | |
--max-time 10 \ | |
--retry 12 \ | |
--retry-max-time 360 \ | |
--retry-connrefused \ | |
'http://localhost:5001/metrics' | |
docker kill $(docker ps -q) | |
- name: Run zot-exporter container image with podman | |
run: | | |
podman run -d -p 5001:5001 ghcr.io/${{ github.repository_owner }}/zxp:${{ github.event.release.tag_name }} | |
sleep 2 | |
curl --connect-timeout 5 \ | |
--max-time 10 \ | |
--retry 12 \ | |
--retry-max-time 360 \ | |
--retry-connrefused \ | |
'http://localhost:5001/metrics' | |
podman kill --all | |
- name: Run zb container image with docker | |
run: | | |
docker run ghcr.io/${{ github.repository_owner }}/zb:${{ github.event.release.tag_name }} --help | |
- name: Run zb container image with podman | |
run: | | |
podman run ghcr.io/${{ github.repository_owner }}/zb:${{ github.event.release.tag_name }} --help | |
scan-image: | |
name: Run Trivy scan on OCI images published to GitHub Packages | |
needs: push-singlearch-image | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
packages: read | |
strategy: | |
matrix: | |
os: [linux, darwin] | |
arch: [amd64, arm64] | |
steps: | |
- name: Log in to GitHub Docker Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/trivy-action@master | |
with: | |
image-ref: 'ghcr.io/${{ github.repository_owner }}/zot-${{ matrix.os }}-${{ matrix.arch }}:${{ github.event.release.tag_name }}' | |
format: 'sarif' | |
output: 'trivy-results.sarif' | |
env: | |
TRIVY_USERNAME: ${{ github.actor }} | |
TRIVY_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run Trivy vulnerability scanner (minimal) | |
uses: aquasecurity/trivy-action@master | |
with: | |
image-ref: 'ghcr.io/${{ github.repository_owner }}/zot-minimal-${{ matrix.os }}-${{ matrix.arch }}:${{ github.event.release.tag_name }}' | |
format: 'sarif' | |
output: 'trivy-results.sarif' | |
env: | |
TRIVY_USERNAME: ${{ github.actor }} | |
TRIVY_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/[email protected] | |
with: | |
sarif_file: 'trivy-results.sarif' | |
scan-multiarch-image: | |
name: Run Trivy scan on OCI multiarch images published to GitHub Packages | |
needs: push-multiarch-image | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
packages: read | |
steps: | |
- name: Log in to GitHub Docker Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/trivy-action@master | |
with: | |
image-ref: 'ghcr.io/${{ github.repository_owner }}/zot:${{ github.event.release.tag_name }}' | |
format: 'sarif' | |
output: 'trivy-results.sarif' | |
env: | |
TRIVY_USERNAME: ${{ github.actor }} | |
TRIVY_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run Trivy vulnerability scanner (minimal) | |
uses: aquasecurity/trivy-action@master | |
with: | |
image-ref: 'ghcr.io/${{ github.repository_owner }}/zot-minimal:${{ github.event.release.tag_name }}' | |
format: 'sarif' | |
output: 'trivy-results.sarif' | |
env: | |
TRIVY_USERNAME: ${{ github.actor }} | |
TRIVY_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/[email protected] | |
with: | |
sarif_file: 'trivy-results.sarif' | |
update-helm-chart: | |
if: github.event_name == 'release' && github.event.action== 'published' | |
needs: push-multiarch-image | |
name: Update Helm Chart | |
permissions: | |
contents: write | |
packages: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: main | |
fetch-depth: '0' | |
- name: Checkout project-zot/helm-charts | |
uses: actions/checkout@v4 | |
with: | |
repository: project-zot/helm-charts | |
ref: main | |
fetch-depth: '0' | |
token: ${{ secrets.HELM_PUSH_TOKEN }} | |
path: ./helm-charts | |
- name: Configure Git | |
run: | | |
git config --global user.name 'github-actions' | |
git config --global user.email '[email protected]' | |
- name: Update appVersion | |
uses: mikefarah/yq@master | |
with: | |
cmd: yq -i '.appVersion = "${{ github.event.release.tag_name }}"' 'helm-charts/charts/zot/Chart.yaml' | |
- name: Update image tag | |
uses: mikefarah/yq@master | |
with: | |
cmd: | | |
yq e '.image.tag = "${{ github.event.release.tag_name }}"' 'helm-charts/charts/zot/values.yaml' > values-updated.yaml | |
- name: Patch values.yaml file | |
run: | | |
diff -b 'helm-charts/charts/zot/values.yaml' values-updated.yaml > values.diff || true | |
patch 'helm-charts/charts/zot/values.yaml' < values.diff | |
rm values-updated.yaml values.diff | |
- name: Update version | |
run: | | |
sudo apt-get install pip | |
pip install pybump | |
pybump bump --file helm-charts/charts/zot/Chart.yaml --level patch | |
- name: Push changes to project-zot/helm-charts | |
run: | | |
cd ./helm-charts | |
git commit -am "build: automated update of Helm Chart" | |
git push |