act-runner/.gitea/workflows/deploy.yaml
Sven Heidemann 436b69804d
Some checks failed
Deploy on push / on-push-deploy_sh-edraft (push) Has been cancelled
push to registry
2023-12-09 13:59:23 +00:00

35 lines
929 B
YAML

name: Deploy on push
run-name: Deploy on push
on:
push:
branches:
- master
jobs:
on-push-deploy_sh-edraft:
runs-on: [dobby.sh-edraft.de, ubuntu-latest]
container: catthehacker/ubuntu:act-latest
steps:
- name: Set up Docker Buildx
uses: https://github.com/docker/setup-buildx-action@v3
- name: Clone Repository
uses: https://github.com/actions/checkout@v3
with:
token: ${{ secrets.CI_ACCESS_TOKEN }}
submodules: true
- name: Login to registry git.sh-edraft.de
uses: https://github.com/docker/login-action@v1
with:
registry: git.sh-edraft.de
username: ${{ secrets.CI_USERNAME }}
password: ${{ secrets.CI_ACCESS_TOKEN }}
- name: Build and push
uses: https://github.com/docker/build-push-action@v2
with:
push: true
tags: sh-edraft.de/act-runner:latest