Skip to content

Commit

Permalink
[website]: add github pages action
Browse files Browse the repository at this point in the history
  • Loading branch information
muqiuhan committed Jun 6, 2024
1 parent 13c2c4a commit 5269674
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 20
57 changes: 57 additions & 0 deletions .github/workflows/stoream-website.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: stoream-website

on:
push:
branches:
- dev

jobs:
pages:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./stoream-website

strategy:
matrix:
dotnet-version: [ '9.0' ]
node-version: [20]

permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
submodules: recursive

- uses: actions/checkout@v3
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}

- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
cache-dependency-path: ./stoream-website/pnpm-lock.yaml

- name: Install dependencies
run: dotnet restore && dotnet tool restore && pnpm install

- name: Build
run: dotnet fable && pnpm exec vite build

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
4 changes: 3 additions & 1 deletion stoream-website/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ obj/
.idea/
fable_modules/
node_modules/
dist/
dist/

*.js

0 comments on commit 5269674

Please sign in to comment.