Skip to content

Commit 5dbb58f

Browse files
committed
[CI fix] Move path definition up a step
1 parent 6804d5d commit 5dbb58f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ jobs:
3737
- if: ${{ matrix.os == 'macos-12' }}
3838
run: |
3939
brew install [email protected]
40+
# needed for [email protected]
41+
# must be run PRIOR to the step its accessed
42+
# https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#adding-a-system-path
43+
echo "/usr/local/opt/[email protected]/bin" >> $GITHUB_PATH
4044
- env:
4145
CERTIFICATE_OSX_APPLICATION: ${{ secrets.BUILD_CERTIFICATE_BASE64_CIMINI }}
4246
CERTIFICATE_PASSWORD: ${{ secrets.P12_PASSWORD_CIMINI }}
@@ -47,8 +51,7 @@ jobs:
4751
if: ${{ matrix.os == 'macos-12' }}
4852
working-directory: ./distribution/macos
4953
run: |
50-
# needed for [email protected]
51-
echo "/usr/local/opt/[email protected]/bin" >> $GITHUB_PATH
54+
echo $PATH
5255
sed -i '' 's/4.0.0/4.2.7/' Info.plist
5356
make
5457
chmod +x add-osx-certificate.sh && ./add-osx-certificate.sh

0 commit comments

Comments
 (0)