Skip to content

Commit

Permalink
Merge branch 'test_next' of github.com:Laboratoria/curriculum into re…
Browse files Browse the repository at this point in the history
…lease/workflow_test2
  • Loading branch information
unjust committed Feb 23, 2024
2 parents 3ef613d + c2d6391 commit 0702280
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/draft_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ jobs:
- name: Increment version
id: bump_version
run: |
npm version ${{ (steps.determine_bump.outputs.isBreakingChange=='true' && 'major') || (steps.determine_bump.outputs.isMinor=='true' && 'minor') || 'patch' }} --force -m "chore(release): Bumps version to v%s and updates dist files"
echo updated_version=$(node -p "require('./package.json').version") >> "$GITHUB_OUTPUT"
npm version ${{ (steps.determine_bump.outputs.isBreakingChange=='true' && 'major') || (steps.determine_bump.outputs.isMinor=='true' && 'minor') || 'patch' }} --force -m "chore(release): Bumps version to v%s and updates dist files"
echo updated_version=$(node -p "require('./package.json').version") >> "$GITHUB_OUTPUT"
- name: Build notes
id: build_notes
uses: mikepenz/[email protected]
Expand All @@ -72,7 +72,7 @@ jobs:
with:
owner: Laboratoria
fromTag: ${{ steps.get_previous_tag.outputs.previous_tag }}
toTag: ${{ steps.bump_version.outputs.updated_version }}
toTag: '.git/refs/heads/next'
- name: Make release draft
id: release_draft
run: |
Expand Down

0 comments on commit 0702280

Please sign in to comment.