Skip to content

Commit

Permalink
fix: pool-prepare syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
nkskaare committed Mar 17, 2024
1 parent f236a5d commit afb6f3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/prepare-pool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:
description: "Relative path to pool definition file. If not provided will use config/project-{pool-tag}-pool-def.json"
required: false
type: string
default:
datadog:
description: "Send metrics to datadog. Secrets must be configured."
required: false
Expand Down Expand Up @@ -69,8 +70,7 @@ jobs:
registry-url: 'https://npm.pkg.github.com'

- name: 'Prepare a pool of scratch orgs'
if: ${{ inputs.pool-def == '' || inputs.pool-def == null }}
run: 'sfp prepare -f ${{ (inputs.pool-def == '' || inputs.pool-def == null) && env.DEFAULT_POOL_DEF || inputs.pool-def }} -v devhub'
run: 'sfp prepare -f ${{ (inputs.pool-def == "" || inputs.pool-def == null) && env.DEFAULT_POOL_DEF || inputs.pool-def }} -v devhub'
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down

0 comments on commit afb6f3c

Please sign in to comment.