We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d491a2b commit 4749978Copy full SHA for 4749978
.github/workflows/release.yml
@@ -51,6 +51,13 @@ jobs:
51
run: |
52
sed -i '' 's/4.0.0/3.0.4.1/' Info.plist
53
brew install mysql@8.0
54
+ # needed for mysql@8.0
55
+ # must be run PRIOR to the step its accessed
56
+ # https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#adding-a-system-path
57
+ echo "/usr/local/opt/mysql@8.0/bin" >> $GITHUB_PATH
58
+ if: ${{ matrix.os == 'macos-13' }}
59
+ working-directory: ./distribution/macos
60
+ run: |
61
make
62
chmod +x add-osx-certificate.sh && ./add-osx-certificate.sh
63
chmod +x osx-codesign.sh && ./osx-codesign.sh
0 commit comments