Skip to content
This repository was archived by the owner on Aug 7, 2026. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,26 @@ jobs:

docker:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
Comment on lines +35 to +37
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: docker/setup-buildx-action@v1
- uses: docker/setup-qemu-action@v1
- uses: docker/login-action@v1
- name: OIDC token
id: docker_oidc
uses: docker/oidc-action@96ba694c64860c7209bcd1ede7d698c71564ef78 # v1.2.0
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
connection-id: "24b78b4d-ffde-4850-a999-76d7bbaf3214"
expires-in: 1800
Comment on lines 47 to +49
- name: Docker login
uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4.6.0
with:
username: kentik
password: ${{ steps.docker_oidc.outputs.token }}
- uses: actions/download-artifact@v2
with:
name: convis-aarch64-unknown-linux-musl
Expand Down
Loading