Skip to content

CI

CI #1

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
# We run this workflow on pushes and also every night to pick up fresh nightly builds
on:
workflow_dispatch:
workflow_call:
inputs:
NETLIFY_SITE_NAME:
required: true
type: string
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# If the workflow is called from this repo, check out the branch it's called from
- name: Test Deploy to Netlify
run: |
echo "NETLIFY_SITE_NAME=${{ inputs.NETLIFY_SITE_NAME || vars.NETLIFY_SITE_NAME }}"