add release action

This commit is contained in:
meeb 2020-12-13 18:10:32 +11:00
parent 93f1234e04
commit a497f478d1
2 changed files with 25 additions and 3 deletions

View File

@ -1,5 +1,8 @@
name: Run Django tests for TubeSync
env:
IMAGE_NAME: tubesync
on:
push:
branches:
@ -40,8 +43,5 @@ jobs:
- name: Push image to GitHub Container Registry
run: |
LATEST_TAG=ghcr.io/meeb/$IMAGE_NAME:latest
DATED_TAG=ghcr.io/meeb/$IMAGE_NAME:$(date +%s)
docker tag $IMAGE_NAME $LATEST_TAG
docker tag $IMAGE_NAME $DATED_TAG
docker push $LATEST_TAG
docker push $DATED_TAG

22
.github/workflows/release.yaml vendored Normal file
View File

@ -0,0 +1,22 @@
name: Release TubeSync
env:
IMAGE_NAME: tubesync
on:
release
jobs:
containerise:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- 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
run: |
REF_TAG=ghcr.io/meeb/$IMAGE_NAME:$GITHUB_REF
docker tag $IMAGE_NAME $REF_TAG
docker push $REF_TAG