Skip to content

Commit

Permalink
Merge pull request #7 from paneron/6-migrate-site-to-github-pages
Browse files Browse the repository at this point in the history
Migrate site to Github Pages
  • Loading branch information
kwkwan authored Nov 24, 2023
2 parents 42c6152 + bd48230 commit 2dfb5ac
Show file tree
Hide file tree
Showing 4 changed files with 852 additions and 639 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/build_deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: build_deploy

on:
schedule:
- cron: '42 */12 * * *'
push:
branches:
- master
pull_request:
repository_dispatch:
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: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false

jobs:
build:
name: Build site
runs-on: ubuntu-latest
environment:
name: production
url: https://iev.demo.paneron.org
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Pages
id: pages
uses: actions/configure-pages@v3

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

- name: Install dependencies
run: yarn install

- name: Build site
run: yarn build

- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: dist/

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
if: ${{ github.ref == 'refs/heads/master' }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
49 changes: 0 additions & 49 deletions .github/workflows/deploy-master.yaml

This file was deleted.

46 changes: 0 additions & 46 deletions .github/workflows/deploy-staging.yaml

This file was deleted.

Loading

0 comments on commit 2dfb5ac

Please sign in to comment.