Skip to content

Commit 59c1ee8

Browse files
authored
Merge pull request #4 from minecraft-essentials/force-push-patch-1
feat(patch): bump version
2 parents 333d902 + 3ded123 commit 59c1ee8

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

Diff for: .github/workflows/deploy.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- uses: dprint/[email protected]
2121
build:
2222
runs-on: ubuntu-latest
23+
needs: style
2324
steps:
2425
- uses: actions/checkout@v4
2526
- name: Install & Build Website
@@ -29,8 +30,8 @@ jobs:
2930
package-manager: bun@latest
3031

3132
deploy:
32-
needs: build
3333
runs-on: ubuntu-latest
34+
needs: build
3435
environment:
3536
name: github-pages
3637
url: ${{ steps.deployment.outputs.page_url }}

Diff for: .github/workflows/tag.yml

+7
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212

1313
tag:
1414
runs-on: ubuntu-latest
15+
needs: style
1516
steps:
1617
- uses: actions/checkout@v2
1718
with:
@@ -23,3 +24,9 @@ jobs:
2324
BRANCH_HISTORY: last
2425
WITH_V: true
2526
PRERELEASE: true
27+
28+
# Versions commit messages
29+
MAJOR_STRING_TOKEN: "feat(major):"
30+
MINOR_STRING_TOKEN: "feat(minor):"
31+
PATCH_STRING_TOKEN: "feat(patch):"
32+
NONE_STRING_TOKEN: "feat:"

0 commit comments

Comments
 (0)