Sven Heidemann
91003f4cb8
Some checks reported warnings
Deploy on push / on-push-deploy_sh-edraft (push) Has been cancelled
28 lines
629 B
YAML
28 lines
629 B
YAML
name: Deploy on push
|
|
run-name: Deploy on push
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
on-push-deploy_sh-edraft:
|
|
runs-on: [custom-runner]
|
|
container: catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- name: Setup docker
|
|
uses: https://github.com/papodaca/install-docker-action@main
|
|
- run: docker -v
|
|
|
|
- name: Clone Repository
|
|
uses: https://github.com/actions/checkout@v3
|
|
with:
|
|
token: ${{ secrets.CI_ACCESS_TOKEN }}
|
|
submodules: true
|
|
|
|
- name: Build act-runner image
|
|
run: |
|
|
docker image prune -f
|
|
chmod +x build
|
|
./build
|