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
/uiPublic

feat: Improve error message for log in#1469

feat: Improve error message for log in

feat: Improve error message for log in #1469

name:Netlify Preview
on:
pull_request:null
jobs:
build-mock:
runs-on:ubuntu-latest
steps:
-uses:actions/checkout@v3.5.3
-uses:c-py/action-dotenv-to-setenv@v4
with:
env-file:.env.development.mock
-name:Use Node.js 22.x
uses:actions/setup-node@v4.0.3
with:
node-version:22.x
-run:npm ci
-run:npm run build
-name:Enable SPA routing on Netlify
run:|
echo "/* /index.html 200" > ./dist/_redirects
-name:Deploy branch preview to Netlify
id:netlify_deploy
run:echo "::set-output name=url::$(npx -p netlify-cli@17.22.1
netlify deploy --dir=dist --json
--alias $(echo '${{ github.ref }}' | shasum | awk '{print $1}' | head -c 10 )-mock
| jq '.deploy_url' --raw-output)"
env:
NETLIFY_AUTH_TOKEN:${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID:${{ secrets.NETLIFY_SITE_ID }}
-name:Print deploy URL
run:echo ${{ steps.netlify_deploy.outputs.url }}
build-prod:
runs-on:ubuntu-latest
steps:
-uses:actions/checkout@v3.5.3
-uses:c-py/action-dotenv-to-setenv@v4
with:
env-file:.env.development.prod
-name:Use Node.js 22.x
uses:actions/setup-node@v4.0.3
with:
node-version:22.x
-run:npm ci
-run:npm run build
-name:Enable SPA routing and API proxying on Netlify
run:|
echo "/api/* https://api.wikibase.cloud/:splat 200" > ./dist/_redirects
echo "/* /index.html 200" >> ./dist/_redirects
-name:Deploy branch preview to Netlify
id:netlify_deploy
run:echo "::set-output name=url::$(npx -p netlify-cli@17.22.1
netlify deploy --dir=dist --json
--alias $(echo '${{ github.ref }}' | shasum | awk '{print $1}' | head -c 10 )-prod
| jq '.deploy_url' --raw-output)"
env:
NETLIFY_AUTH_TOKEN:${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID:${{ secrets.NETLIFY_SITE_ID }}
-name:Print deploy URL
run:echo ${{ steps.netlify_deploy.outputs.url }}

[8]ページ先頭

©2009-2025 Movatter.jp