mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
62 lines
2.0 KiB
YAML
62 lines
2.0 KiB
YAML
name: Build and Upload GCP guest-agent container
|
|
env:
|
|
REGISTRY: ghcr.io
|
|
on: [workflow_dispatch]
|
|
|
|
jobs:
|
|
build-gcp-guest-agent:
|
|
runs-on: ubuntu-22.04
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
strategy:
|
|
matrix:
|
|
version: ["20220927.00"]
|
|
include:
|
|
- version: "20220927.00"
|
|
latest: true
|
|
steps:
|
|
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
|
|
with:
|
|
repository: "GoogleCloudPlatform/guest-agent"
|
|
ref: refs/tags/${{ matrix.version }}
|
|
path: "guest-agent"
|
|
|
|
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
|
|
with:
|
|
path: "constellation"
|
|
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }}
|
|
|
|
- name: Docker meta
|
|
id: meta
|
|
uses: docker/metadata-action@57396166ad8aefe6098280995947635806a0e6ea # tag=v4.1.1
|
|
with:
|
|
images: |
|
|
${{ env.REGISTRY }}/edgelesssys/gcp-guest-agent
|
|
flavor: |
|
|
latest=${{ matrix.latest || false }}
|
|
tags: |
|
|
type=raw,value=${{ matrix.version }}
|
|
|
|
- name: Log in to the Container registry
|
|
id: docker-login
|
|
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # tag=v2.1.0
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Prepare hardcoded configuration file
|
|
run: |
|
|
cp "${GITHUB_WORKSPACE}/constellation/3rdparty/gcp-guest-agent/instance_configs.cfg" "${GITHUB_WORKSPACE}/guest-agent/"
|
|
|
|
- name: Build and push container image
|
|
id: build
|
|
uses: docker/build-push-action@c56af957549030174b10d6867f20e78cfd7debc5 # tag=v3.2.0
|
|
with:
|
|
context: ./guest-agent
|
|
file: ./constellation/3rdparty/gcp-guest-agent/Dockerfile
|
|
push: true
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|