mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
342a71fa36
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
58 lines
1.8 KiB
YAML
58 lines
1.8 KiB
YAML
name: Build bazel dev container
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
paths:
|
|
- "bazel/container/**"
|
|
- ".github/workflows/build-bazel-container.yml"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-container:
|
|
runs-on: ubuntu-22.04
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
|
|
|
- name: Determine version
|
|
id: version
|
|
working-directory: ./bazel/container
|
|
run: |
|
|
version=$(grep "ARG BAZEL_VERSION" Containerfile | cut -d= -f2)
|
|
echo "version=v${version}" | tee -a "$GITHUB_OUTPUT"
|
|
|
|
- name: Docker meta
|
|
id: meta
|
|
uses: docker/metadata-action@818d4b7b91585d195f67373fd9cb0332e31a7175 # v4.6.0
|
|
with:
|
|
images: |
|
|
ghcr.io/edgelesssys/bazel-container
|
|
flavor: |
|
|
latest=false
|
|
tags: |
|
|
type=raw,value=${{ steps.version.outputs.version }},enable=${{ github.ref_name == 'main' }}
|
|
type=raw,value=${{ github.ref_name }},enable=${{ github.ref_name != 'main' }}
|
|
type=sha,value=${{ github.sha }}
|
|
type=raw,value=latest,enable=${{ github.ref_name == 'main' }}
|
|
|
|
- name: Log in to the Container registry
|
|
uses: ./.github/actions/container_registry_login
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build and push container image
|
|
uses: docker/build-push-action@2eb1c1961a95fc15694676618e422e8ba1d63825 # v4.1.1
|
|
with:
|
|
context: ./bazel/container
|
|
file: ./bazel/container/Containerfile
|
|
push: true
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|