mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-23 13:36:35 +00:00
build container image on release
This commit is contained in:
parent
b0beb18484
commit
750f1529d1
26
.github/workflows/build-image.yaml
vendored
Normal file
26
.github/workflows/build-image.yaml
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
name: Build container image for TubeSync
|
||||||
|
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [release]
|
||||||
|
|
||||||
|
env:
|
||||||
|
IMAGE_NAME: tubesync
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
container:
|
||||||
|
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: |
|
||||||
|
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
|
1
.github/workflows/testing.yaml
vendored
1
.github/workflows/testing.yaml
vendored
@ -1,4 +1,5 @@
|
|||||||
name: Run Django tests for TubeSync
|
name: Run Django tests for TubeSync
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
|
Loading…
Reference in New Issue
Block a user