Skip to content

Commit 25e3bbf

Browse files
committed
[Fix] CI/CD
1 parent 2550bf2 commit 25e3bbf

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

.github/workflows/beta.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
build:
88
runs-on: ubuntu-latest
9-
if: "!startsWith(github.event.head_commit.message, '[🚀 Release]')"
9+
if: "!startsWith(github.event.head_commit.message, '[🚀 Release Beta]')"
1010
steps:
1111
- uses: actions/checkout@v2
1212
with:
@@ -23,7 +23,7 @@ jobs:
2323
- run: npm run pre-commit
2424
- id: pkgjson
2525
run: chmod +x ./scripts/version.sh && ./scripts/version.sh
26-
- run: git add . && git commit -m "[🚀 Release] v${{ steps.pkgjson.outputs.pkgversion }}" && git push
26+
- run: git add . && git commit -m "[🚀 Release Beta] v${{ steps.pkgjson.outputs.pkgversion }}" && git push
2727
- run: npm publish --tag beta
2828
env:
2929
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -32,4 +32,4 @@ jobs:
3232
- run: npm run pre-commit
3333
- id: nextnightly
3434
run: chmod +x ./scripts/version.sh && ./scripts/version.sh
35-
- run: git add . && git commit -m "[🚀 Release] v${{ steps.nextnightly.outputs.pkgversion }}" && git push
35+
- run: git add . && git commit -m "[🚀 Release Nightly] v${{ steps.nextnightly.outputs.pkgversion }}" && git push

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
jobs:
66
build:
77
runs-on: ubuntu-latest
8-
if: "!startsWith(github.event.head_commit.message, '[🚀 Release]') || startsWith(github.event.head_commit.message, '[🚀 Release] Nightly')"
8+
if: "!startsWith(github.event.head_commit.message, '[🚀 Release Nightly]')"
99
steps:
1010
- uses: actions/checkout@v2
1111
with:
@@ -23,7 +23,7 @@ jobs:
2323
- run: npm run pre-commit
2424
- id: pkgjson
2525
run: chmod +x ./scripts/version.sh && ./scripts/version.sh
26-
- run: git add . && git commit -m "[🚀 Release] v${{ steps.pkgjson.outputs.pkgversion }}" && git push
26+
- run: git add . && git commit -m "[🚀 Release Nightly] v${{ steps.pkgjson.outputs.pkgversion }}" && git push
2727
- run: npm publish --tag nightly
2828
env:
2929
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
jobs:
77
build:
88
runs-on: ubuntu-latest
9-
if: "!startsWith(github.event.head_commit.message, '[🚀 Release]') || startsWith(github.event.head_commit.message, '[🚀 Release] Nightly')"
109
steps:
1110
- uses: actions/checkout@v2
1211
with:

CHANGELOG.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
# v2.0.5 (January 15, 2022)
1+
# v2.0.6 (January 16, 2022)
22

3-
- Fix: remove tests from build
4-
- Fix: translate()
3+
- Fix: CI/CD
54

65
<!-- all-shields/sponsors-badges:START -->
76

0 commit comments

Comments
 (0)