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 089e03a commit 85cb329Copy full SHA for 85cb329
.github/workflows/signMacOsBinaries.yml
@@ -3,12 +3,16 @@ on: [push]
3
jobs:
4
# Sign the JFrog CLI binary for macOS
5
DeleteOldArtifacts:
6
- - uses: kolpav/purge-artifacts-action@v1
7
- with:
8
- token: ${{ secrets.JF_GIT_TOKEN }}
9
- expire-in: 0 # Setting this to 0 will delete all artifacts
+ - name: Delete-Old-Artifacts
+ runs-on: ubuntu-latest
+ steps:
+ - uses: kolpav/purge-artifacts-action@v1
10
+ with:
11
+ token: ${{ secrets.JF_GIT_TOKEN }}
12
+ expire-in: 0 # Setting this to 0 will delete all artifacts
13
SignBinary:
14
# if: ${{ contains(github.event.head_commit.message, 'Bump version from') }}
15
+ needs: DeleteOldArtifacts
16
name: Sign-JFrog-CLI-MacOS-Binary
17
runs-on: macos-latest
18
strategy:
0 commit comments