Skip to content

Commit

Permalink
chore: removed sfdx from inspect (#1937)
Browse files Browse the repository at this point in the history
  • Loading branch information
iowillhoit authored Oct 11, 2024
1 parent e86babd commit bac1c32
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/create-cli-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
with:
max_attempts: 5
retry_wait_seconds: 120
command: sf-release cli:versions:inspect -c ${{ needs.get-channel.outputs.s3-channel }} -l archive --cli sf
command: sf-release cli:versions:inspect -c ${{ needs.get-channel.outputs.s3-channel }} -l archive
retry_on: error

pack-upload-mac:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/promote-nightly-to-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
with:
old-channel: nightly
new-channel: latest-rc
ignore-missing: ${{ inputs.ignore-missing }}
ignore-missing: ${{ github.event_name == 'workflow_run' && 'false' || inputs.ignore-missing }}

promote-verify:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
with:
max_attempts: 5
retry_wait_seconds: 120
command: sf-release cli:versions:inspect -c stable-rc -l archive --cli sf
command: sf-release cli:versions:inspect -c stable-rc -l archive ${{ inputs.ignore-missing && '--ignore-missing' || '' }}

verify-docker-version:
needs: [promote-verify]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/promote-rc-to-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
with:
max_attempts: 5
retry_wait_seconds: 120
command: sf-release cli:versions:inspect -c stable -l archive --cli sf
command: sf-release cli:versions:inspect -c stable -l archive ${{ inputs.ignore-missing && '--ignore-missing' || '' }}

verify-docker-version:
needs: [promote-verify]
Expand Down

0 comments on commit bac1c32

Please sign in to comment.