Skip to content

Commit c7c9223

Browse files
committed
more testing
Signed-off-by: Jeromy Cannon <[email protected]>
1 parent 09d6fb4 commit c7c9223

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/flow-deploy-release-artifact.yaml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,12 @@ on:
2222
description: "Perform Dry Run"
2323
type: boolean
2424
required: false
25-
default: false
25+
default: true
26+
pull_request:
27+
types:
28+
- opened
29+
- reopened
30+
- synchronize
2631

2732
env:
2833
REGISTRY: ghcr.io
@@ -73,13 +78,17 @@ jobs:
7378
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_USER_EMAIL }}
7479
GIT_COMMITTER_NAME: ${{ secrets.GIT_USER_NAME }}
7580
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_USER_EMAIL }}
76-
run: npx semantic-release --dry-run
81+
run: |
82+
npx semantic-release --dry-run
83+
ls -al
84+
cat VERSION
7785
7886
- name: Extract Version
7987
id: tag
8088
run: |
89+
cat VERSION
8190
[[ "${{ github.event.inputs.dry-run-enabled }}" == true && ! -f VERSION ]] && echo -n "0.0.0-latest" > VERSION
82-
echo "version=$(cat VERSION | tr -d '[:space:]')" >> ${GITHUB_OUTPUT}
91+
echo "version=$(cat VERSION | tr -d '[:space:]')" | tee -a ${GITHUB_OUTPUT}
8392
8493
update-readme:
8594
name: "Update README.md"

0 commit comments

Comments
 (0)