Skip to content

v0.10.0

v0.10.0 #4

Workflow file for this run

name: Cut Release
on:
release:
types: [published]
jobs:
build-and-push-images:
permissions:
packages: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: Build and push coco-key-provider
uses: docker/build-push-action@v6
with:
context: .
file: ./attestation-agent/docker/Dockerfile.keyprovider
platforms: linux/amd64
push: true
tags: ghcr.io/confidential-containers/staged-images/coco-keyprovider:${{ github.sha }}, ghcr.io/confidential-containers/staged-images/coco-keyprovider:latest