tubesync/.github/workflows/release.yaml

29 lines
843 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:
- uses: actions/checkout@v2
- name: Get tag
id: vars
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
2020-12-13 07:10:32 +00:00
- name: Build the container image
run: docker buildx build --platform linux/arm/v7,linux/arm64/v8,linux/amd64 --tag $IMAGE_NAME .
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
- name: Push image to GitHub Container Registry
env:
RELEASE_TAG: ${{ steps.vars.outputs.tag }}
2020-12-13 07:10:32 +00:00
run: |
REF_TAG=ghcr.io/meeb/$IMAGE_NAME:$RELEASE_TAG
2020-12-13 07:10:32 +00:00
docker tag $IMAGE_NAME $REF_TAG
docker push $REF_TAG