Skip to content

Commit

Permalink
🐎 ci: 是变量名导致的错误么?
Browse files Browse the repository at this point in the history
  • Loading branch information
ruan-cat committed Jun 30, 2024
1 parent 4665b99 commit 2e418fe
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/use-vercel-cli-build-try-4.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,25 +84,25 @@ jobs:

- name: 1
run: |
url-1="$(vc deploy --yes --prebuilt --prod --cwd=${{env.p1}} -t ${{env.vct}})"
vc alias -t ${{env.vct}} set "$url-1" ${{env.p1-url}}
url1="$(vc deploy --yes --prebuilt --prod --cwd=${{env.p1}} -t ${{env.vct}})"
vc alias -t ${{env.vct}} set "$url1" ${{env.p1-url}}
- name: 2
run: |
url-2="$(vc deploy --yes --prebuilt --prod --cwd=${{env.p2}} -t ${{env.vct}})"
vc alias -t ${{env.vct}} set "$url-2" ${{env.p2-url}}
# - name: 2
# run: |
# url-2="$(vc deploy --yes --prebuilt --prod --cwd=${{env.p2}} -t ${{env.vct}})"
# vc alias -t ${{env.vct}} set "$url-2" ${{env.p2-url}}

- name: 3
run: |
url-3="$(vc deploy --yes --prebuilt --prod --cwd=${{env.p3}} -t ${{env.vct}})"
vc alias -t ${{env.vct}} set "$url-3" ${{env.p3-url}}
url3="$(vc deploy --yes --prebuilt --prod --cwd=${{env.p3}} -t ${{env.vct}})"
vc alias -t ${{env.vct}} set "$url3" ${{env.p3-url}}
- name: 4
run: |
url-4="$(vc deploy --yes --prebuilt --prod --cwd=${{env.p4}} -t ${{env.vct}})"
vc alias -t ${{env.vct}} set "$url-4" ${{env.p4-url}}
# - name: 4
# run: |
# url-4="$(vc deploy --yes --prebuilt --prod --cwd=${{env.p4}} -t ${{env.vct}})"
# vc alias -t ${{env.vct}} set "$url-4" ${{env.p4-url}}

- name: 5
run: |
url-5="$(vc deploy --yes --prebuilt --prod --cwd=${{env.p5}} -t ${{env.vct}})"
vc alias -t ${{env.vct}} set "$url-5" ${{env.p5-url}}
# - name: 5
# run: |
# url-5="$(vc deploy --yes --prebuilt --prod --cwd=${{env.p5}} -t ${{env.vct}})"
# vc alias -t ${{env.vct}} set "$url-5" ${{env.p5-url}}

0 comments on commit 2e418fe

Please sign in to comment.