Commit and push built files to master (#756)

* Commit and push built files to master

* Testing...

* Add  name

* Add fallback

* Revert back to master branch
This commit is contained in:
Josh Johnson 2019-11-14 09:47:20 +00:00 committed by GitHub
parent 933ea6093f
commit e67b8a3e4c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,8 +15,8 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: 10
# run all tests
- run: |
- name: Build and run all tests
run: |
npm ci
npm run build
npx bundlesize
@ -32,6 +32,15 @@ jobs:
BUNDLESIZE_GITHUB_TOKEN: ${{secrets.BUNDLESIZE_GITHUB_TOKEN}}
FORCE_COLOR: 2
HUSKY_SKIP_INSTALL: true
- name: Commit built files
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git commit -m "Update build files 🏗" -a || echo "No changes to commit" && exit 0
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)