1
0
mirror of https://github.com/lus/pasty.git synced 2023-08-10 21:13:09 +03:00
pasty/.github/workflows/docker.yml

51 lines
1.5 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'
2021-11-15 08:28:46 +03:00
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
2021-11-15 08:23:38 +03:00
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
2021-04-18 22:31:07 +03:00
with:
2021-11-15 08:28:46 +03:00
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
2021-11-15 08:30:54 +03:00
password: ${{ secrets.GITHUB_TOKEN }}
2021-04-18 22:31:07 +03:00
- name: build and push
uses: docker/build-push-action@v2
with:
2021-11-15 08:23:38 +03:00
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:
2021-11-15 08:23:38 +03:00
PASTY_VERSION=${{ env.BRANCH }}-${{ env.COMMIT_HASH }}