Skip to content

Commit

Permalink
Setting node version. Fix: step output links
Browse files Browse the repository at this point in the history
  • Loading branch information
mountainash authored Mar 5, 2024
1 parent aee2780 commit 1c5e3fe
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/debug-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
with:
ref: ${{ github.event.inputs.ref }}

- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm

- name: Install Vercel CLI 📦
run: npm i -g vercel

Expand All @@ -53,8 +58,8 @@ jobs:

- name: Deploy to Vercel outputs ✍️
run: |
echo "PREVIEW_URL: ${{ needs.verceldeploy.outputs.PREVIEW_URL }}"
echo "DEPLOYMENT_URLS: ${{ needs.verceldeploy.outputs.DEPLOYMENT_URLS }}"
echo "COMMENT_CREATED: ${{ needs.verceldeploy.outputs.COMMENT_CREATED }}"
echo "DEPLOYMENT_INSPECTOR_URL: ${{ needs.verceldeploy.outputs.DEPLOYMENT_INSPECTOR_URL }}"
echo "DEPLOYMENT_UNIQUE_URL: ${{ needs.verceldeploy.outputs.DEPLOYMENT_UNIQUE_URL }}"
echo "PREVIEW_URL: ${{ steps.verceldeploy.outputs.PREVIEW_URL }}"
echo "DEPLOYMENT_URLS: ${{ steps.verceldeploy.outputs.DEPLOYMENT_URLS }}"
echo "COMMENT_CREATED: ${{ steps.verceldeploy.outputs.COMMENT_CREATED }}"
echo "DEPLOYMENT_INSPECTOR_URL: ${{ steps.verceldeploy.outputs.DEPLOYMENT_INSPECTOR_URL }}"
echo "DEPLOYMENT_UNIQUE_URL: ${{ steps.verceldeploy.outputs.DEPLOYMENT_UNIQUE_URL }}"

0 comments on commit 1c5e3fe

Please sign in to comment.