Skip to content

Commit b2c30b1

Browse files
committed
bug fix for working dir
1 parent 238a7b8 commit b2c30b1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/cd-release.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,10 @@ jobs:
126126
id: create-install-script
127127
shell: bash
128128
run: |
129-
sed 's|__DOLTGRES_VERSION__|'"$DOLTGRES_VERSION"'|' scripts/install.sh > out/install.sh
130-
chmod 755 out/install.sh
129+
sed 's|__DOLTGRES_VERSION__|'"$DOLTGRES_VERSION"'|' scripts/install.sh > $FILE
130+
chmod 755 $FILE
131131
env:
132+
FILE: ${{ format('{0}/out/install.sh', github.workspace) }}
132133
DOLTGRES_VERSION: ${{ needs.format-version.outputs.version }}
133134
- name: Upload Linux AMD64 Distro
134135
id: upload-linux-amd64-distro

0 commit comments

Comments
 (0)