Skip to content

Merge pull request #818 from flatcar/dependabot/github_actions/docker… #5

Merge pull request #818 from flatcar/dependabot/github_actions/docker…

Merge pull request #818 from flatcar/dependabot/github_actions/docker… #5

name: Release Container Image
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
- 'staging'
env:
REGISTRY: ghcr.io
IMAGE_NAME: flatcar/nebraska
jobs:
build:
name: Build Container Image
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
steps:
- name: Get tag name
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
flavor: |
latest=false
tags: |
type=ref,event=tag
type=raw,value=latest,enable=${{ github.ref != 'refs/tags/staging' }}
- name: Set up QEMU
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1
- name: Check out code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Login to registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: true
platforms: linux/amd64,linux/arm64/v8
tags: ${{ steps.meta.outputs.tags }}
cache-from: type=gha
cache-to: type=gha,mode=max