ci: add github workflow on push #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docker-build-push | |
on: push | |
env: | |
REGISTRY: ghcr.io | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags') | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21 | |
- name: Run Quality Control Checks | |
run: make audit | |
deploy: | |
runs-on: ubuntu-latest | |
needs: test | |
if: startsWith(github.ref, 'refs/tags') | |
steps: | |
- name: Extract Version | |
id: version_step | |
run: | | |
echo "##[set-output name=version;]VERSION=${GITHUB_REF#$"refs/tags/v"}" | |
echo "##[set-output name=version_tag;]$GITHUB_REPOSITORY:${GITHUB_REF#$"refs/tags/v"}" | |
echo "##[set-output name=latest_tag;]$GITHUB_REPOSITORY:latest" | |
- name: Print Version | |
run: | | |
echo ${{steps.version_step.outputs.version_tag}} | |
echo ${{steps.version_step.outputs.latest_tag}} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.CR_TOKEN }} | |
- name: PrepareReg Names | |
id: read-docker-image-identifiers | |
run: | | |
echo VERSION_TAG=$(echo ${{ steps.version_step.outputs.version_tag }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV | |
echo LASTEST_TAG=$(echo ${{ steps.version_step.outputs.latest_tag }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV | |
- name: Build and push | |
id: docker_build | |
uses: docker/build-push-action@v2 | |
with: | |
push: true | |
tags: | | |
${{ env.REGISTRY }}/${{ env.VERSION_TAG }} | |
${{ env.REGISTRY }}/${{ env.LASTEST_TAG }} | |
build-args: | | |
${{ steps.version_step.outputs.version }} |