From c5e479e6d109d67ef57dc497b8a313f6fc6c42b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Petazzoni?= Date: Mon, 1 Nov 2021 07:47:15 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9A=99=EF=B8=8F=20=20Add=20GHA=20workflow=20?= =?UTF-8?q?to=20build+push=20to=20GHCR=20and=20Docker=20Hub?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/automated-build.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/automated-build.yaml diff --git a/.github/workflows/automated-build.yaml b/.github/workflows/automated-build.yaml new file mode 100644 index 0000000..057d51e --- /dev/null +++ b/.github/workflows/automated-build.yaml @@ -0,0 +1,12 @@ +name: Automated Build + +on: + push: + branches: + - main + +jobs: + automated-build: + uses: jpetazzo/workflows/.github/workflows/automated-build.yaml@main + secrets: + DOCKER_HUB_TOKEN: ${{ secrets.DOCKER_HUB_TOKEN }} \ No newline at end of file