Skip to content

Commit 967193e

Browse files
committed
Update build instructions.
1 parent 7708692 commit 967193e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/build-container.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- 'release*'
7+
- 'main'
78
workflow_dispatch: {}
89

910
env:
@@ -19,19 +20,21 @@ jobs:
1920
steps:
2021
- name: Checkout repository
2122
uses: actions/checkout@v4
23+
with:
24+
submodules: 'true'
2225
- name: Log in to the Container registry
23-
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
26+
uses: docker/login-action@v3
2427
with:
2528
registry: ${{ env.REGISTRY }}
2629
username: ${{ github.actor }}
2730
password: ${{ secrets.GITHUB_TOKEN }}
2831
- name: Extract metadata (tags, labels) for Docker
2932
id: meta
30-
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
33+
uses: docker/metadata-action@v5
3134
with:
3235
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
3336
- name: Build and push Docker image
34-
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
37+
uses: docker/build-push-action@v6
3538
with:
3639
context: .
3740
push: true

0 commit comments

Comments
 (0)