Template
1
0

Initial commit

This commit is contained in:
2025-11-13 14:29:56 +01:00
commit 99d9450336
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
name: 'Build and Deploy'
on: [push]
jobs:
build-container:
runs-on: standard-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Build Container
run: docker build --tag gitea.seeseepuff.be/${{ github.repository }}:latest .
- name: Login
with: # Set the secret as an input
package_rw: ${{ secrets.PACKAGE_RW }}
run: docker login gitea.seeseepuff.be -u seeseemelk -p ${{ secrets.PACKAGE_RW }}
- name: Push Container
run: docker push gitea.seeseepuff.be/${{ github.repository }}:latest
- name: Trigger Watchtower
uses: https://gitea.seeseepuff.be/actions/watchtower@v1