-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: build | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: π checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: π§ setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18' | ||
|
||
- name: π¦ install dependencies | ||
run: npm ci | ||
|
||
- name: π¨ build | ||
run: npm run build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: π release to github pages | ||
on: | ||
push: | ||
branches: ["release"] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | ||
permissions: | ||
contents: write | ||
pages: write | ||
id-token: write | ||
|
||
# Allow one concurrent deployment | ||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
deploy: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: π checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: π§ setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18' | ||
|
||
- name: π¦ install dependencies | ||
run: npm ci | ||
|
||
- name: π¨ build | ||
run: npm run build | ||
|
||
- name: π tracking ignored stuff | ||
run: | | ||
sed -i.bak -e '/^\/node_modules$/d' .gitignore | ||
sed -i.bak -e '/^\/x$/d' .gitignore | ||
- name: ποΈ reconstitute node_modules for production | ||
run: | | ||
rm -rf node_modules | ||
npm ci --omit=dev | ||
- name: π configure pages | ||
uses: actions/configure-pages@v2 | ||
|
||
- name: π€ upload pages artifact | ||
uses: actions/upload-pages-artifact@v1 | ||
with: | ||
path: './dist' | ||
|
||
- name: π deploy to github pages | ||
id: deployment | ||
uses: actions/deploy-pages@v1 |