Skip to content

Commit 6934c2d

Browse files
committed
ci: add build and push workflow
1 parent 54166f8 commit 6934c2d

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/build-push.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build and Push Container Image
2+
on:
3+
release:
4+
types: [published]
5+
6+
jobs:
7+
build-push:
8+
name: Build and Push Container Image
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v3
13+
- name: Build and Push
14+
uses: stafftastic/docker-build-push-action@main
15+
with:
16+
name: commit-status-poster
17+
project: stafftastic
18+
repository: images
19+
serviceAccountKey: ${{secrets.GOOGLE_ARTIFACT_REGISTRY_SA_KEY}}

0 commit comments

Comments
 (0)