We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd9c524 commit 482a9cfCopy full SHA for 482a9cf
1 file changed
.github/workflows/build.yml
@@ -11,8 +11,20 @@ jobs:
11
runs-on: ubuntu-latest
12
13
steps:
14
- - uses: comchangs/action-yarn@v0.1-beta
15
- - name: Install dependencies
16
- run: yarn install
17
- - name: Build Core
18
- run: yarn build:core
+ - uses: actions/checkout@v1
+ - name: Install Dependencies
+ uses: Borales/actions-yarn@v2.0.0
+ with:
+ cmd: install # will run `yarn install` command
19
+ - name: Build Core
20
21
22
+ cmd: build:core # will run `yarn build:core` command
23
+ - name: Commit changed files
24
+ uses: stefanzweifel/git-auto-commit-action@v2.2.0
25
26
+ commit_message: Update engine core
27
+ branch: ${{ github.head_ref }}
28
+ file_pattern: dist/engine/core/*
29
+ env:
30
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments