2024-07-05 00:34:58 -04:00
|
|
|
name: Deploy
|
|
|
|
|
|
|
|
on:
|
2024-07-13 16:05:28 -04:00
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- "**"
|
2024-07-05 00:34:58 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: cth-ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Push image
|
|
|
|
uses: docker/build-push-action@v6
|
|
|
|
with:
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
docker.atomaka.com/budget:latest
|
|
|
|
docker.atomaka.com/budget:${{gitea.sha}}
|
|
|
|
- name: Deploy to server
|
2024-07-13 16:05:28 -04:00
|
|
|
run: |
|
|
|
|
curl --oauth2-bearer ${{ secrets.WATCHTOWER_TOKEN }} \
|
|
|
|
${{ secrets.WATCHTOWER_HOST }}/v1/update?images=docker.atomaka.com/budget
|