Skip to content

Commit

Permalink
Migrate site to Github Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
kwkwan committed Dec 20, 2023
1 parent eaa1eff commit 5a9d1d7
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 37 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/build_deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: build_deploy

on:
push:
branches:
- main
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:
runs-on: ubuntu-latest
environment:
name: production
url: https://www.geolexica.org
steps:
- name: Checkout
uses: actions/checkout@v3

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

- name: Build site
run: |
mkdir -p _site
cp index.html _site
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: _site

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

This file was deleted.

0 comments on commit 5a9d1d7

Please sign in to comment.