diff --git a/.chezmoiignore b/.chezmoiignore index a13085d..99de3fd 100644 --- a/.chezmoiignore +++ b/.chezmoiignore @@ -1,3 +1,4 @@ +.github/ Dockerfile README.md {{- if ne .chezmoi.os "linux" }} diff --git a/.github/workflows/dockerfile.yml b/.github/workflows/dockerfile.yml new file mode 100644 index 0000000..60db315 --- /dev/null +++ b/.github/workflows/dockerfile.yml @@ -0,0 +1,15 @@ +name: Build Demo Dockerfile + +on: [push] + +jobs: + build-demo-dockerfile: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Build Dockerfile + uses: VaultVulp/gp-docker-action@1.2.0 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + image-name: dotfiles + image-tag: latest