misp-docker/.github/workflows/release-latest.yml

46 lines
1.2 KiB
YAML
Raw Normal View History

2023-12-07 11:02:08 +01:00
name: Build the Docker images and push them to the container registry
on:
push:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
2023-05-18 11:50:13 +02:00
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
2023-05-18 11:50:13 +02:00
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
2023-05-18 11:50:13 +02:00
- name: Initialize environment
2023-05-18 11:50:13 +02:00
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: |
2023-09-15 13:23:35 +02:00
sed -e '/^[[:space:]]*$/d' -e '/[#@]/d' -e 's/\"//g' -e 's/\(^[^=]*\)=\(.*\)/\1="\2"/' template.env > env.hcl
2023-12-07 11:02:08 +01:00
echo "COMMIT_HASH=`echo '${{ github.sha }}' | cut -c 1-7`" >> "$GITHUB_ENV"
echo "NAMESPACE=ghcr.io/misp/misp-docker" >> "$GITHUB_ENV"
2023-12-07 11:02:08 +01:00
- name: Log in to the container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/bake-action@v4
with:
push: true
2023-12-07 11:02:08 +01:00
provenance: false
files: docker-bake.hcl, env.hcl