Skip to content

Commit

Permalink
chore: does this work
Browse files Browse the repository at this point in the history
  • Loading branch information
favna committed Aug 11, 2021
1 parent 3864890 commit 1b1ed93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
run: |
# Resolve the tag to be used. "next" for push events, "pr-{prNumber}" for dispatch events.
TAG=$([[ ${{ github.event_name }} == 'push' ]] && echo 'next' || echo 'pr-${{ github.event.inputs.prNumber }}')
BRANCH=$(echo '${{ github.event.ref }}' | sed 's/refs\/heads\///g')
BRANCH=$(echo '${{ github.event.inputs.ref || 'main' }}')
# Bump and publish
yarn lerna publish --yes --conventional-prerelease --ignore-scripts --no-verify-access --no-git-tag-version --no-push --pre-dist-tag ${TAG} --preid "${TAG}.$(git rev-parse --verify --short HEAD)" --allow-branch ${BRANCH}
Expand Down

0 comments on commit 1b1ed93

Please sign in to comment.