Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 4e3618f

Browse files
github-action을 위한 yml 빌드
1 parent 31318f2 commit 4e3618f

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

‎.github/workflows/update-README.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3+
4+
name: update README.md
5+
6+
on:
7+
push:
8+
branches: [ github-action ]
9+
pull_request:
10+
branches: [ github-action ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v3
19+
- name: Use Node.js 16.14.0
20+
uses: actions/setup-node@v3
21+
with:
22+
node-version: 16.14.0
23+
cache: 'npm'
24+
- name: build README.md
25+
run: npm run build
26+
- name: update README.md
27+
run: |
28+
git add .
29+
git config user.name github-actions
30+
git config user.email github-actions@github.com
31+
git commit -m "Automatic Update README.md"
32+
git push

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /