We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae1d85d commit 8748388Copy full SHA for 8748388
.github/workflows/build.yml
@@ -17,9 +17,7 @@ jobs:
17
branch:
18
- sid_amd64
19
env:
20
- # These three values need to be updated for collectd/collectd-ci
21
- # SLUG: "collectd/ci:${{ matrix.branch }}"
22
- SLUG: "ghcr.io/${{ github.actor }}/collectd-ci:${{ matrix.branch }}"
+ SLUG: "collectd/ci:${{ matrix.branch }}"
23
24
steps:
25
- uses: actions/checkout@v2
@@ -33,7 +31,6 @@ jobs:
33
31
- name: Log into the container registry
34
32
uses: docker/login-action@v1
35
with:
36
- registry: ghcr.io
37
- username: ${{ github.actor }}
38
- password: ${{ secrets.GITHUB_TOKEN }}
+ username: ${{ secrets.DOCKER_USERNAME }}
+ password: ${{ secrets.DOCKER_PASSWORD }}
39
- run: docker push "${SLUG}"
0 commit comments