Skip to content

Commit 1c9c945

Browse files
authored
Manifest from url (#1)
* Manifest from url rather than api call
1 parent f97b831 commit 1c9c945

12 files changed

Lines changed: 53 additions & 943 deletions

.github/workflows/basic-validation.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/check-dist.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/workflows/code-deploy.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Deploy for CODE
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build-and-deploy:
9+
runs-on: [ ubuntu-20.04 ]
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v3
13+
14+
- uses: actions/setup-node@v3
15+
with:
16+
node-version: 19.6.0
17+
18+
- name: Install packages
19+
run: npm install
20+
21+
- name: Build
22+
run: npm run build
23+
24+
- name: Deploy
25+
if: ${{ github.ref == 'refs/heads/main' }}
26+
run: |
27+
git config --local user.name retzero
28+
git config --local user.email ticce@naver.com
29+
git add ./dist/
30+
git commit -m "[ci skip] dist/ update with ${GITHUB_SHA:0:7}"
31+
git push origin

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/workflows/e2e-cache.yml

Lines changed: 0 additions & 147 deletions
This file was deleted.

.github/workflows/e2e-tests.yml

Lines changed: 0 additions & 102 deletions
This file was deleted.

.github/workflows/licensed.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/workflows/release-new-action-version.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

0 commit comments

Comments
 (0)