Skip to content

Merge pull request #40 from jmapio/dependabot/npm_and_yarn/esbuild-0.… #13

Merge pull request #40 from jmapio/dependabot/npm_and_yarn/esbuild-0.…

Merge pull request #40 from jmapio/dependabot/npm_and_yarn/esbuild-0.… #13

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
if: github.repository == 'jmapio/jmapio.github.io'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: .node-version
- run: npm ci
- uses: ruby/setup-ruby@v1
with:
ruby-version: .ruby-version
bundler-cache: true
- run: bundle exec jekyll build
env:
JEKYLL_ENV: production
- uses: actions/upload-pages-artifact@v5
with:
path: _site
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v5