pasty/.github/workflows/docker.yml

51 lines
1.6 KiB
YAML
Raw Normal View History

2021-04-18 22:31:07 +03:00
name: docker
on:
push:
branches:
2021-04-18 23:13:45 +03:00
- master
2021-04-18 22:31:07 +03:00
- develop
paths-ignore:
- '**.md'
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
2021-04-18 22:31:07 +03:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- name: define branch name
run: echo "BRANCH=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
- name: define commit hash
run: echo "COMMIT_HASH=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- name: define staging tag
if: env.BRANCH == 'develop'
run: echo "TAG=staging" >> $GITHUB_ENV
- name: define latest tag
2021-04-18 23:10:15 +03:00
if: env.BRANCH == 'master'
2021-04-18 22:31:07 +03:00
run: echo "TAG=latest" >> $GITHUB_ENV
- name: set up qemu
uses: docker/setup-qemu-action@v1
- name: set up buildx
id: docker_buildx
2021-04-18 22:31:07 +03:00
uses: docker/setup-buildx-action@v1
- name: log in to ghcr
uses: docker/login-action@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.SERVICE_USER }} # Defined in secrets for auth to registry
password: ${{ secrets.GITHUB_TOKEN }}
2021-04-18 22:31:07 +03:00
- name: build and push
uses: docker/build-push-action@v2
with:
builder: ${{ steps.docker_buildx.outputs.name }}
platforms: linux/amd64, linux/arm64
2021-04-18 22:31:07 +03:00
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.TAG }}, ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.COMMIT_HASH }}
2021-04-18 22:31:07 +03:00
build-args:
PASTY_VERSION=${{ env.BRANCH }}-${{ env.COMMIT_HASH }}