File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ name: docker image release
77on :
88 push :
99 tags :
10- - ' v[0-9]+.[0-9]+.[0-9]+' # ignore rc
10+ - ' v[0-9]+.[0-9]+.[0-9]+' # ignore rc
1111
1212concurrency :
1313 group : ${{ github.workflow }}-${{ github.ref }}
@@ -25,16 +25,24 @@ jobs:
2525 - name : Check out the repo
2626 uses : actions/checkout@v4
2727
28+ - name : Install Rust (for dkls23-rs dependency)
29+ uses : dtolnay/rust-toolchain@stable
30+
31+ - name : Setup dkls23-rs
32+ uses : ./.github/actions/setup-dkls23
33+ with :
34+ ci_token : ${{ secrets.CI_DKLS_GARBLING }}
35+
2836 - name : Set up QEMU
2937 uses : docker/setup-qemu-action@v3
3038
3139 # all lowercase ghcr registry
3240 - run : |
33- DOCKER_REGISTRY=`echo "${{ env.REGISTRY }}/${{ github.repository_owner }}" | tr '[:upper:]' '[:lower:]'`
34- echo "DOCKER_REGISTRY=$DOCKER_REGISTRY" >> $GITHUB_ENV
41+ DOCKER_REGISTRY=`echo "${{ env.REGISTRY }}/${{ github.repository_owner }}" | tr '[:upper:]' '[:lower:]'`
42+ echo "DOCKER_REGISTRY=$DOCKER_REGISTRY" >> $GITHUB_ENV
3543
36- REPO_NAME=`echo "${{ github.repository }}" | awk -F'/' '{print $2}' | tr '[:upper:]' '[:lower:]'`
37- echo "REPO_NAME=$REPO_NAME" >> $GITHUB_ENV
44+ REPO_NAME=`echo "${{ github.repository }}" | awk -F'/' '{print $2}' | tr '[:upper:]' '[:lower:]'`
45+ echo "REPO_NAME=$REPO_NAME" >> $GITHUB_ENV
3846
3947 - name : Parse tag
4048 id : tag
6876 binaries : |
6977 - /go/bin/pchaind
7078 build-env : |
71- - BUILD_TAGS=muslc
79+ - BUILD_TAGS=muslc
You can’t perform that action at this time.
0 commit comments