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 1103017 commit a2e2501Copy full SHA for a2e2501
.github/workflows/ci-pipeline.yml
@@ -36,6 +36,15 @@ jobs:
36
- name: Checkout repository
37
uses: actions/checkout@v4
38
39
+ # Login against a Docker registry
40
+ # https://github.com/docker/login-action
41
+ - name: Log into registry ${{ env.REGISTRY }}
42
+ uses: docker/[email protected]
43
+ with:
44
+ registry: ${{ env.REGISTRY }}
45
+ username: ${{ github.actor }}
46
+ password: ${{ secrets.GITHUB_TOKEN }}
47
+
48
# This might be unnecessary as tests are not
49
# multiplatform
50
- name: Setup Docker buildx
0 commit comments