Skip to content

Commit e95312b

Browse files
committed
fix: docker relase
1 parent c698ef5 commit e95312b

1 file changed

Lines changed: 14 additions & 6 deletions

File tree

.github/workflows/docker-release.yml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name: docker image release
77
on:
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

1212
concurrency:
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
@@ -68,4 +76,4 @@ jobs:
6876
binaries: |
6977
- /go/bin/pchaind
7078
build-env: |
71-
- BUILD_TAGS=muslc
79+
- BUILD_TAGS=muslc

0 commit comments

Comments
 (0)