Skip to content

Commit 76012b3

Browse files
committed
chore: Update build workflow to include Docker image build and push to GitHub Container Registry
1 parent 0e2749a commit 76012b3

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches: [ master ]
66

77
jobs:
8-
Rebuild-everything:
8+
build-readme-file:
99
runs-on: ubuntu-latest
1010
steps:
1111
# Checkout, install tools..
@@ -29,6 +29,14 @@ jobs:
2929
commit_user_email: github-actions[bot]@users.noreply.github.com
3030
commit_author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
3131

32+
build-docker-image:
33+
needs: build-readme-file
34+
runs-on: ubuntu-latest
35+
steps:
36+
# Checkout, install tools..
37+
- uses: actions/checkout@v2
38+
with:
39+
token: ${{ secrets.PAT }}
3240
# Use docker to build current directory ./Dockfile
3341
- name: Login to GitHub Container Registry
3442
uses: docker/login-action@v1

0 commit comments

Comments
 (0)