text workflow

This commit is contained in:
2025-11-17 16:46:02 -05:00
parent 93f521806e
commit 6b6ee68cb7

View File

@@ -0,0 +1,10 @@
- name: Login to registry
run: echo ${{ secrets.GITEA_TOKEN }} | docker login git.shadowvault.eu -u ${{ gitea.actor }} --password-stdin
- name: Build and push
run: |
docker build --no-cache --pull -t git.shadowvault.eu/${{ gitea.repository }}:latest .
docker push git.shadowvault.eu/${{ gitea.repository }}:latest
- name: Clean up
run: docker system prune -f