act-runner/.gitea/workflows/deploy.yaml

35 lines
929 B
YAML
Raw Normal View History

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