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 2d14065 commit c874f15Copy full SHA for c874f15
.github/workflows/signMacOsBinaries.yml
@@ -3,7 +3,7 @@ on: [push]
3
jobs:
4
# Sign the JFrog CLI binary for macOS
5
SignBinary:
6
- if: ${{ !contains(github.event.head_commit.message, 'Bump version from') }}
+ if: ${{ contains(github.event.head_commit.message, 'Bump version from') }}
7
name: Sign-JFrog-CLI-MacOS-Binary
8
runs-on: macos-latest
9
strategy:
@@ -16,6 +16,9 @@ jobs:
16
go-version: 1.22.x
17
cache: false
18
19
+ - name: Set Environment Variable
20
+ run: echo "goarch=${{ matrix.goarch }}" >> $GITHUB_ENV
21
+
22
- name: Checkout Source
23
uses: actions/checkout@v4
24
0 commit comments