dotfiles/.gitea/workflows/docker.yaml
2023-06-23 11:41:28 -04:00

20 lines
462 B
YAML

name: Dotfiles Docker Container
run-name: ${{ gitea.actor }} is building new container
on:
push:
branches:
- docker
jobs:
push_to_registry:
name: Push docker image to local registry
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Deploy
run: |
docker build -t git.keegandeppe.com/kdeppe/dotfiles:latest .
docker push git.keegandeppe.com/kdeppe/dotfiles