Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
EyalDelarea committed Jun 4, 2024
1 parent 85cb329 commit 9f3b55c
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/signMacOsBinaries.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
name: Sign MacOS Binaries
on: [push]
on: [ push ]
jobs:
# Sign the JFrog CLI binary for macOS
DeleteOldArtifacts:
- name: Delete-Old-Artifacts
runs-on: ubuntu-latest
steps:
- uses: kolpav/purge-artifacts-action@v1
with:
token: ${{ secrets.JF_GIT_TOKEN }}
expire-in: 0 # Setting this to 0 will delete all artifacts
- uses: kolpav/purge-artifacts-action@v1
with:
token: ${{ secrets.JF_GIT_TOKEN }}
expire-in: 0 # Setting this to 0 will delete all artifacts
SignBinary:
# if: ${{ contains(github.event.head_commit.message, 'Bump version from') }}
needs: DeleteOldArtifacts
name: Sign-JFrog-CLI-MacOS-Binary
runs-on: macos-latest
strategy:
matrix:
goarch: [arm64,amd64]
goarch: [ arm64,amd64 ]
steps:
- name: Setup Go
uses: actions/setup-go@v5
Expand Down

0 comments on commit 9f3b55c

Please sign in to comment.