-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix DRY_RUN var in the release workflow
Signed-off-by: Yuri Shkuro <[email protected]>
- Loading branch information
1 parent
a027bff
commit e272409
Showing
2 changed files
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,11 @@ on: | |
type: string | ||
description: "Version number for v2 docs, in #.#.# format" | ||
|
||
dry_run: | ||
required: true | ||
type: boolean | ||
description: Do a dry run. | ||
|
||
jobs: | ||
prepare-release: | ||
if: ${{ github.repository == 'jaegertracing/documentation' }} | ||
|
@@ -33,6 +38,7 @@ jobs: | |
git config user.email "[email protected]" | ||
# git config credential.helper "store --file=.git/credentials" | ||
# echo "https://${{ secrets.JAEGERTRACINGBOT_GITHUB_TOKEN }}" > .git/credentials | ||
export DRY_RUN=${{ inputs.dry_run }} | ||
./scripts/release.sh ${{ inputs.version_v1 }} ${{ inputs.version_v2 }} | ||
- name: GH CLI create PR | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters