From 62a840fd8dc901d0f916bdaa6029fe72dcc431c1 Mon Sep 17 00:00:00 2001 From: winston Date: Sun, 31 Jul 2022 05:05:43 +0200 Subject: [PATCH] ci: enable CI build for demo dockerfile --- .chezmoiignore | 1 + .github/workflows/dockerfile.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 .github/workflows/dockerfile.yml 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