We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7607e4d commit ef8c72dCopy full SHA for ef8c72d
.github/workflows/build-and-push-image.yml
@@ -0,0 +1,16 @@
1
+name: CI
2
+on: [push]
3
+
4
+jobs:
5
+ build-and-push-image:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v4
9
+ - name: Build image
10
+ run: docker build -t oc4ids-datastore-pipeline .
11
+ - name: Login to GitHub Container Registry
12
+ uses: docker/login-action@v3
13
+ with:
14
+ registry: ghcr.io
15
+ username: ${{ github.actor }}
16
+ password: ${{ secrets.GITHUB_TOKEN }}
0 commit comments