Skip to content

Commit 3ded123

Browse files
committed
feat(patch): bump version
fix: commit message tokens fix: needs in ci
1 parent 85199ae commit 3ded123

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- uses: dprint/check@v2.2
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 }}

.github/workflows/tag.yml

Lines changed: 7 additions & 0 deletions
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:"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "website",
33
"type": "module",
4-
"version": "0.0.7",
4+
"version": "1.0.1",
55
"scripts": {
66
"dev": "astro dev",
77
"start": "astro dev",

0 commit comments

Comments
 (0)