Skip to content

Merge pull request #24 from UNopenGIS:component-live-editor-tweaks #13

Merge pull request #24 from UNopenGIS:component-live-editor-tweaks

Merge pull request #24 from UNopenGIS:component-live-editor-tweaks #13

Workflow file for this run

name: Copy and Push
on:
push:
branches:
- dev
jobs:
copy-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: dev
- 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: Setup git
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
- name: Commit and push
run: |
git add . || exit 0
git commit -m "[Auto] Copy files to static" || exit 0
git push origin dev || exit 0