From 76012b3b1dc19d3a69c80c071eadd0ce3afb7932 Mon Sep 17 00:00:00 2001 From: Anduin Date: Mon, 3 Jun 2024 12:55:50 +0000 Subject: [PATCH] chore: Update build workflow to include Docker image build and push to GitHub Container Registry --- .github/workflows/build.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4c339687..e69a1d0d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,7 +5,7 @@ on: branches: [ master ] jobs: - Rebuild-everything: + build-readme-file: runs-on: ubuntu-latest steps: # Checkout, install tools.. @@ -29,6 +29,14 @@ jobs: commit_user_email: github-actions[bot]@users.noreply.github.com commit_author: github-actions[bot] + build-docker-image: + needs: build-readme-file + runs-on: ubuntu-latest + steps: + # Checkout, install tools.. + - uses: actions/checkout@v2 + with: + token: ${{ secrets.PAT }} # Use docker to build current directory ./Dockfile - name: Login to GitHub Container Registry uses: docker/login-action@v1