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 968f4a7 commit cd94debCopy full SHA for cd94deb
.github/workflows/macos-build.yml
@@ -46,9 +46,9 @@ jobs:
46
env:
47
FH_API_KEY: ${{ secrets.FH_API_KEY }}
48
run: |
49
- if [[ "${{ github.ref }}" == refs/tags/* ]]; then
+ if [[ "${{ github.ref }}" == "refs/heads/development" ]]; then
50
python3 filehost-upload -i 7d96641c-b306-49cf-80ff-ea1e5d00c9d1 -a addversion -V ${{ env.adjusted_run_number }} -I "`git log -1 --pretty=tformat:'dev@%h: %s'`" m65tools-*-macos.7z
51
- elif [[ "${{ github.ref }}" == "refs/heads/development" ]]; then
+ elif [[ "${{ github.ref }}" =~ ^refs/heads/release-.+$ ]]; then
52
python3 filehost-upload -i 0dee985e-5bc1-404b-adb0-fc7989aef346 -a addversion -V ${{ env.adjusted_run_number }} -I "`git log -1 --pretty=tformat:'reltemp@%h: %s'`" m65tools-*-macos.7z
53
fi
54
0 commit comments