tubesync/.github/workflows/release.yaml

33 lines
1003 B
YAML
Raw Normal View History

2020-12-13 07:10:32 +00:00
name: Release TubeSync
env:
IMAGE_NAME: tubesync
on:
release:
types: [published]
2020-12-13 07:10:32 +00:00
jobs:
containerise:
runs-on: ubuntu-latest
steps:
2021-05-27 10:49:48 +00:00
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Get tag
id: vars
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
2021-05-27 10:49:48 +00:00
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
2020-12-13 07:10:32 +00:00
- name: Log into GitHub Container Registry
run: echo "${{ secrets.REGISTRY_ACCESS_TOKEN }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin
2021-05-27 10:49:48 +00:00
- name: Build and push
uses: docker/build-push-action@v2
with:
platforms: linux/amd64
push: true
tags: ghcr.io/meeb/${{ env.IMAGE_NAME }}:${{ env.RELEASE_TAG }}
cache-from: type=registry,ref=ghcr.io/meeb/${{ env.IMAGE_NAME }}:${{ env.RELEASE_TAG }}
cache-to: type=inline
build-args: |
IMAGE_NAME=${{ env.IMAGE_NAME }}
RELEASE_TAG=${{ steps.vars.outputs.tag }}