- Notifications
You must be signed in to change notification settings - Fork7
feat: Improve error message for log in#1469
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
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 }} |