Skip to content

Commit 30561ee

Browse files
committed
fix: update published artifacts
1 parent 80b39f3 commit 30561ee

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/actions/build/action.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,3 @@ runs:
1616
- name: Test
1717
run: yarn test
1818
shell: bash
19-
- name: Build Sample App
20-
run: yarn e2e-build
21-
shell: bash

.github/workflows/pull-request.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,8 @@ jobs:
99
steps:
1010
- name: Checkout
1111
uses: actions/checkout@v3
12-
- name: Build
12+
- name: Lint & Test
1313
uses: ./.github/actions/build
14+
- name: Build
15+
run: yarn run build
16+
shell: bash

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v3
17-
- name: Build
17+
- name: Lint & Test
1818
uses: ./.github/actions/build
1919
- name: Release
2020
run: npx semantic-release

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
[
8686
"@semantic-release/exec",
8787
{
88-
"prepareCmd": "./bump_version.sh ${nextRelease.version}"
88+
"prepareCmd": "./bump_version.sh ${nextRelease.version} && yarn run build"
8989
}
9090
],
9191
"@semantic-release/npm",

0 commit comments

Comments
 (0)