Skip to content

Run init-container as non-root user for 4.1.4; change base image #64

Run init-container as non-root user for 4.1.4; change base image

Run init-container as non-root user for 4.1.4; change base image #64

Workflow file for this run

name: Release
on:
push:
tags:
- "*.*"
- "*.*.*"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Print version info
id: semver
run: |
make version
- name: Set up Docker Buildx
id: buildx
uses: crazy-max/ghaction-docker-buildx@v1
with:
buildx-version: latest
qemu-version: latest
- name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
- name: Log in to the GitHub Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Run checks
run: |
make ci
- name: Build
run: |
make release