Skip to content

Commit

Permalink
Merge pull request #19 from SolidLabResearch/master
Browse files Browse the repository at this point in the history
Add CI/CD for deploying to github pages
  • Loading branch information
eliasnijs authored Feb 28, 2024
2 parents bcd4605 + b20385f commit a76b826
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 1 deletion.
76 changes: 76 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# Simple workflow for deploying static content to GitHub Pages
name: Deploy to github pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["development-milestones"]

# 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: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:

build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'

- name: Install and Build
run: |
cd solid-watchparty/
npm install
npm run build
- name: Upload Build Artifact
uses: actions/upload-artifact@v3
with:
name: dist
path: './dist/'

# Single deploy job since we're just deploying
deploy:
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Download Build Artifact
uses: actions/download-artifact@v3
with:
name: dist
path: './dist/'

- name: Setup Pages
uses: actions/configure-pages@v4

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './dist/'

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
documentation/
dist/
2 changes: 1 addition & 1 deletion solid-watchparty/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ export default defineConfig({
base: './',
build: {
outDir: '../dist'
}
},
})

0 comments on commit a76b826

Please sign in to comment.