Skip to content

Commit

Permalink
try merge ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Wijnant committed Apr 29, 2020
1 parent d87b360 commit 9a38b4f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Build and release

on:
push:
branches:
- master
# branches:
# - master
paths-ignore:
- 'docs/**'

Expand All @@ -19,8 +19,8 @@ jobs:
uses: actions/cache@v1
with:
path: ./node_modules
key: node:12-buster-node_modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: node:12-buster-node_modules-
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-node_modules-

- name: Install packages
run: yarn install --frozen-lockfile
Expand All @@ -31,12 +31,12 @@ jobs:
- name: Compile src
run: yarn build

- name: Commit docs and dist
- name: Commit docs
uses: EndBug/add-and-commit@v4
with:
add: 'docs/**'
add: 'docs'
author_name: Github Workflow Bot
author_email: [email protected]
message: 'build docs and dist'
message: 'build docs'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 9a38b4f

Please sign in to comment.