Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

updated

updated #139

# Simple workflow for deploying static content to GitHub Pages
name:Deploy static content to Pages
on:
# Runs on pushes targeting the default branch
push:
branches:[main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents:read
pages:write
id-token:write
# Allow one concurrent deployment
concurrency:
group:"pages"
cancel-in-progress:true
env:
# Hosted GitHub runners have 7 GB of memory available, let's use 6 GB
NODE_OPTIONS:--max-old-space-size=6144
jobs:
deploy:
environment:
name:github-pages
url:${{ steps.deployment.outputs.page_url }}
runs-on:ubuntu-latest
steps:
-name:Checkout
uses:actions/checkout@v4
-name:Set up Node.js
uses:actions/setup-node@v4
with:
node-version:20.x
cache:yarn
-name:Install dependencies
run:yarn install --frozen-lockfile --non-interactive
-name:Build
run:yarn build
-name:Setup Pages
uses:actions/configure-pages@v4
-name:Upload artifact
uses:actions/upload-pages-artifact@v3
with:
path:build
-name:Deploy to GitHub Pages
id:deployment
uses:actions/deploy-pages@v4

[8]ページ先頭

©2009-2025 Movatter.jp