Skip to content

Commit

Permalink
Switch to workflow build
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesdring committed Mar 26, 2024
1 parent a4567b6 commit 3f7eab5
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/build-site.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Build site

'on':
workflow_dispatch: {}
# schedule:
# # * is a special character in YAML so you have to quote this string
# - cron: '45 23 * * *'
push:
branches: [ main ]
paths:
- README.md
- src/**
- _config.js
- deno.json
- deno.lock
- .github/workflows/build-site.yml

jobs:
# Build job
build:
runs-on: ubuntu-latest

steps:
- name: Build the site
uses: dringtech/[email protected]

# Deploy job
deploy:
# Add a dependency to the build job
needs: build

# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source

# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

# Specify runner + deployment step
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 3f7eab5

Please sign in to comment.