Skip to content

[npm dev] Bump electron-to-chromium from 1.5.2 to 1.5.6 #174

[npm dev] Bump electron-to-chromium from 1.5.2 to 1.5.6

[npm dev] Bump electron-to-chromium from 1.5.2 to 1.5.6 #174

Workflow file for this run

name: Deploy to github pages
concurrency: Deployment
on:
push:
branches: [main]
jobs:
publish:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: validate github workflow files
uses: digitalservicebund/github-actions-linter@3b941278d52936497add0afdebbf5c6e6ee8bd5d # v0.1.13
- uses: ruby/setup-ruby@50ba3386b050ad5b97a41fcb81240cbee1d1821f # v1.188.0
with:
ruby-version: 3.3.4
bundler-cache: true
- name: Install node modules
run: npm ci
- name: Build page
run: npm run build:production
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@c05ee637ec73429400a359430db8e5629f3f2564
with:
target_branch: gh-pages
build_dir: _site
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}