We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2ed479 commit d64adccCopy full SHA for d64adcc
.github/workflows/release.yml
@@ -54,7 +54,7 @@ jobs:
54
name: Publish documentation from "${{ github.ref_name }}" branch to ${{ inputs.docs_env }}
55
runs-on: ubuntu-latest
56
# skip during dry runs, publish to production only from branches with names starting with "release", publish to staging from anywhere
57
- if: ${{ !inputs.dry_run && ((startsWith(github.ref_name, "release") && inputs.docs_env == "production") || inputs.docs_env == "staging") }}
+ if: ${{ !inputs.dry_run && ((startsWith(github.ref_name, 'release') && inputs.docs_env == 'production') || inputs.docs_env == 'staging') }}
58
outputs:
59
target-version: $${{ steps.target-version.outputs }}
60
steps:
0 commit comments