Skip to content

Commit

Permalink
more testing
Browse files Browse the repository at this point in the history
Signed-off-by: Jeromy Cannon <[email protected]>
  • Loading branch information
jeromy-cannon committed Sep 18, 2024
1 parent 09d6fb4 commit c7c9223
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/flow-deploy-release-artifact.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ on:
description: "Perform Dry Run"
type: boolean
required: false
default: false
default: true
pull_request:
types:
- opened
- reopened
- synchronize

env:
REGISTRY: ghcr.io
Expand Down Expand Up @@ -73,13 +78,17 @@ jobs:
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_USER_EMAIL }}
GIT_COMMITTER_NAME: ${{ secrets.GIT_USER_NAME }}
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_USER_EMAIL }}
run: npx semantic-release --dry-run
run: |
npx semantic-release --dry-run
ls -al
cat VERSION
- name: Extract Version
id: tag
run: |
cat VERSION
[[ "${{ github.event.inputs.dry-run-enabled }}" == true && ! -f VERSION ]] && echo -n "0.0.0-latest" > VERSION
echo "version=$(cat VERSION | tr -d '[:space:]')" >> ${GITHUB_OUTPUT}
echo "version=$(cat VERSION | tr -d '[:space:]')" | tee -a ${GITHUB_OUTPUT}
update-readme:
name: "Update README.md"
Expand Down

0 comments on commit c7c9223

Please sign in to comment.