Skip to content

fix: retry alias command without --scope for personal accounts #218

fix: retry alias command without --scope for personal accounts

fix: retry alias command without --scope for personal accounts #218

Workflow file for this run

name: example - next.js
on:
push:
branches:
- master
- feature/*
pull_request_target:
jobs:
static:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
with:
version: 10.15.0
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 24
cache: pnpm
- run: |
pnpm install --frozen-lockfile
pnpm exec vercel pull --yes --token=${VERCEL_TOKEN}
working-directory: example/nextjs
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID_NEXTJS }}
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
- run: |
pnpm exec vercel build
if: github.event_name == 'pull_request_target'
working-directory: example/nextjs
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID_NEXTJS }}
- uses: ./
id: now-deployment-staging
if: github.event_name == 'pull_request_target'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID_NEXTJS }}
vercel-args: --prebuilt
working-directory: example/nextjs
alias-domains: |
staging.nextjs.vercel-action.amond.dev
pr-{{PR_NUMBER}}.nextjs.vercel-action.amond.dev
- name: production or not
id: prod_or_not
run: |
if [ "$REF" == 'refs/heads/master' ]
then
echo "vercel-args=--prod --prebuilt" >> $GITHUB_OUTPUT
else
echo "vercel-args=--prebuilt" >> $GITHUB_OUTPUT
fi
env:
REF: ${{ github.ref }}
- run: |
pnpm exec vercel build --prod
if: github.event_name == 'push'
working-directory: example/nextjs
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID_NEXTJS }}
- uses: ./
id: now-deployment-production
if: github.event_name == 'push'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID_NEXTJS }}
vercel-args: ${{ steps.prod_or_not.outputs.vercel-args }}
working-directory: example/nextjs
alias-domains: |
{{BRANCH}}.nextjs.vercel-action.amond.dev