Files
tor-portable/.gitea/workflows/docker-build.yml
Workflow config file is invalid. Please check your config file: yaml: line 2: mapping values are not allowed in this context
2025-11-17 16:46:02 -05:00

10 lines
394 B
YAML

- 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