feat: Introduce role check and timer before server stop
All checks were successful
Publish staging Docker image / Push Docker image to Gitea Container Registry (push) Successful in 1m40s

This commit is contained in:
2024-03-03 15:10:08 +01:00
parent 320cdc2b14
commit a0656c5831
5 changed files with 59 additions and 9 deletions

View File

@ -7,12 +7,12 @@
# To get a newer version, you will need to update the SHA.
# You can also reference a tag or branch, but the action may change without warning.
name: Publish Docker image
name: Publish staging Docker image
on:
release:
types: [published]
push:
branches:
- feature/*
jobs:
push_to_registry:
@ -30,7 +30,15 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
-
# Add support for more platforms with QEMU (optional)
# https://github.com/docker/setup-qemu-action
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push Docker image
uses: docker/build-push-action@v2
with: