Skip to content

Commit ed59984

Browse files
committed
Update active.yml
1 parent c5de297 commit ed59984

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

.github/workflows/active.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,22 @@ jobs :
44
runs-on : ubuntu-latest
55
steps:
66
- name: Compile TypeScript
7-
run: echo "Compiling TypeScript (To be implemented)"
7+
run: tsc
8+
build :
9+
runs-on : ubuntu-latest
10+
needs: compileTs
11+
steps:
12+
- name: build
13+
uses: actions/checkout@v3
14+
- name: Upload GitHub Pages artifact
15+
uses: actions/[email protected]
16+
deploy :
17+
runs-on : ubuntu-latest
18+
needs: build
19+
steps:
20+
- name: Deploy to GitHub Pages
21+
uses: JamesIves/[email protected]
22+
with:
23+
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
24+
BRANCH: gh-pages
25+
FOLDER: dist

0 commit comments

Comments
 (0)