2020-12-13 07:10:32 +00:00
|
|
|
name: Release TubeSync
|
|
|
|
|
|
|
|
env:
|
|
|
|
IMAGE_NAME: tubesync
|
|
|
|
|
|
|
|
on:
|
2020-12-17 08:47:59 +00:00
|
|
|
release:
|
|
|
|
types: [published]
|
2020-12-13 07:10:32 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
containerise:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2020-12-17 09:03:10 +00:00
|
|
|
- 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 build . --tag $IMAGE_NAME
|
|
|
|
- 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
|
2020-12-17 09:03:10 +00:00
|
|
|
env:
|
|
|
|
RELEASE_TAG: ${{ steps.vars.outputs.tag }}
|
2020-12-13 07:10:32 +00:00
|
|
|
run: |
|
2020-12-17 09:03:10 +00:00
|
|
|
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
|