Skip to content

Debug Action CI

Debug Action CI #8

Workflow file for this run

name: Debug Action CI
on:
workflow_dispatch:
inputs:
ref:
description: 'Ref to run the workflow on'
required: true
default: 'refs/heads/master'
jobs:
debug:
name: Debug Action CI
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
deployments: write
steps:
- name: Checkout ${{ github.event.inputs.ref }} πŸ“₯
uses: actions/checkout@v4
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
- name: Pull Vercel environment information πŸ”‘
run: npx vercel pull --yes --token=${{ secrets.VERCEL_TOKEN }}
- name: Make sample website πŸ“„
env:
LOCAL_REF: ${{ github.event.inputs.ref }}
BUILD_DIR: .vercel/output/static
run: mkdir -p $BUILD_DIR/ && touch $BUILD_DIR/index.html && echo "LOCAL_REF=$LOCAL_REF" > $BUILD_DIR/index.html
- name: Make sample config πŸ“„
env:
CONFIG_DIR: .vercel/output
run: |
touch $CONFIG_DIR/config.json
echo "{\"version\": 3}" > $CONFIG_DIR/config.json
- name: Deploy to Vercel πŸš€
id: verceldeploy
# Fork of https://github.com/BetaHuhn/deploy-to-vercel-action
uses: mountainash/fork-deploy-to-vercel-action@develop
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
PREBUILT: true
- name: Deploy to Vercel outputs ✍️
run: |
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 }}"