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 ef8c72d commit 3f14688Copy full SHA for 3f14688
.github/workflows/build-and-push-image.yml
@@ -4,6 +4,8 @@ on: [push]
4
jobs:
5
build-and-push-image:
6
runs-on: ubuntu-latest
7
+ env:
8
+ IMAGE_NAME: "oc4ids-datastore-pipeline"
9
steps:
10
- uses: actions/checkout@v4
11
- name: Build image
@@ -14,3 +16,7 @@ jobs:
14
16
registry: ghcr.io
15
17
username: ${{ github.actor }}
18
password: ${{ secrets.GITHUB_TOKEN }}
19
+ - name: Push image
20
+ run: |
21
+ IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
22
+ echo $IMAGE_ID
0 commit comments