Merge pull request #18 from UNopenGIS:component-live-editor-tweaks #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Copy and Push | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
copy-and-push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
cache: yarn | |
cache-dependency-path: "./package.json" | |
- name: Install dependencies | |
run: yarn add fs-extra glob | |
- name: Copy files | |
run: yarn copy | |
- name: Commit and push | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "albertkun" | |
git add . | |
git commit -m "[Auto] Update static files" || exit 0 # Don't fail if no changes | |
git push https://x-access-token:${{ secrets.PAT }}@github.com/UNopenGIS/learning.git HEAD:dev |