Skip to content

Commit

Permalink
fix: test 6
Browse files Browse the repository at this point in the history
  • Loading branch information
popovevgen committed Dec 25, 2023
1 parent f2edc1d commit 8acfae7
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,28 @@ jobs:
name: 'Create GitHub Release'
runs-on: ubuntu-latest

environment:
name: 'production'

env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
VERCEL_SCOPE: 1212evgen

steps:
- name: 'Checkout'
uses: actions/checkout@v4
with:
persist-credentials: false

- name: 'Setup Node.js v18'
- name: 'Setup Node.js v20'
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- name: 'Install Vercel CLI'
run: npm install --global vercel@latest

- name: 'Pull Vercel Environment Information'
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: 'Pull Vercel project settings'
run: vercel pull --environment=production --yes --token=${{ secrets.VERCEL_TOKEN }} --scope=${{ env.VERCEL_SCOPE }}

- name: 'Build project assets'
run: |
Expand Down

0 comments on commit 8acfae7

Please sign in to comment.