-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (51 loc) · 1.68 KB
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: デプロイ
on:
# `master` ブランチにpushした際
push:
branches:
- master
# 手動実行された際
workflow_dispatch:
# GitHub Pages のデプロイに必要な権限を `GITHUB_TOKEN` に設定
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "deploy"
# 後続のジョブが走り始めたら先に実行している方を中断する
cancel-in-progress: true
jobs:
deloy-ghpages:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
name: GitHub Pages へデプロイ
runs-on: ubuntu-latest
steps:
- name: "📦 チェックアウト"
uses: actions/checkout@v3
- name: "📦 Node.jsのセットアップ"
uses: actions/setup-node@v3
with:
node-version: "22.9.0"
- name: "📦 Denoのセットアップ"
uses: denoland/setup-deno@v1
with:
deno-version: v1.29.x
- name: "📦 npmパッケージのインストール"
run: npm ci
- name: "📦 Elmのセットアップ"
uses: jorelali/setup-elm@v3
- name: "📦 GitHub Pagesのセットアップ"
uses: actions/configure-pages@v2
- name: "🛠️ アプリケーションのビルド"
# NOTE: リポジトリ名を変えた際は `--base=` の値を変える必要がある
run: npm run build -- --base=/moe-somesim/
- name: "🛠️ ビルドしたファイルをアップロード"
uses: actions/upload-pages-artifact@v1
with:
path: "./dist"
- name: "🚀 GitHub Pagesへデプロイ"
id: deployment
uses: actions/deploy-pages@v1