Skip to content

Commit fd21616

Browse files
authored
fix(repo): docker image release (#3005)
* fix: repair release-nix workflow * feat: merge release workflows into single pipeline building all platform binaries and Docker image * fix: pin ghr version * fix: remove redundant container image declaration * fix: relase docker workflow adjustments * fix: add rev-parse to create sha tag * fix: use node 18 and node:lts container image * fix: install sudo * fix: switch to ubuntu and disable corepack * fix: workaround corepack permission issue
1 parent e929dea commit fd21616

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/actions/cached-dependencies/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ runs:
2020
run: |-
2121
npm install -g corepack --force
2222
corepack enable
23-
if: true == ${{ inputs.install-corepack }}
23+
if: ${{ inputs.install-corepack == 'true' }}
2424
shell: bash
2525
- name: Install Dependencies
2626
run: yarn install --immutable

.github/workflows/release-docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Cached dependencies
4040
uses: "./.github/actions/cached-dependencies"
4141
with:
42-
install-corepack: false
42+
install-corepack: 'false'
4343
- name: Build
4444
run: yarn build
4545
- name: Build binary
@@ -65,7 +65,7 @@ jobs:
6565
- name: Cached dependencies
6666
uses: "./.github/actions/cached-dependencies"
6767
with:
68-
install-corepack: false
68+
install-corepack: 'false'
6969
- name: Build
7070
run: yarn build
7171
- name: Build binary

0 commit comments

Comments
 (0)