mirror of
https://github.com/MunGell/awesome-for-beginners.git
synced 2025-12-13 09:42:11 +00:00
27 lines
580 B
YAML
27 lines
580 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
paths:
|
|
- 'data.json'
|
|
- '.github/tpl.md'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: "16.x"
|
|
- name: Build
|
|
run: node .github/scripts/build.js
|
|
- name: Commit
|
|
run: |
|
|
git config --global user.name 'Shmavon Gazanchyan'
|
|
git config --global user.email 'MunGell@users.noreply.github.com'
|
|
git commit -am "Update README.md"
|
|
git push
|