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