code-server/.gitea/workflows/deploy.yaml
Sven Heidemann 7634e4f9f5
All checks were successful
Deploy on push / on-push-deploy_sh-edraft (push) Successful in 10m4s
Removed stack rm
2023-11-27 19:03:52 +01:00

39 lines
1.0 KiB
YAML

name: Deploy on push
run-name: Deploy on push
on:
push:
branches:
- master
jobs:
on-push-deploy_sh-edraft:
runs-on: [gismo.sh-edraft.de, ubuntu-latest]
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 code-server image
run: |
docker image prune -f
chmod +x build
./build
- name: Deploy Stack to sh-edraft.de
uses: https://github.com/kgierke/portainer-stack-deployment@v1
with:
portainer-url: "https://docker.sh-edraft.de"
portainer-username: "gitea_job"
portainer-password: "${{ secrets.docker_job }}"
portainer-endpoint: 2
name: code
file: docker-compose.yml
variables: "{}"