Skip to content

Deployment

Deployment #1

Workflow file for this run

name: Deployment
on:
workflow_dispatch:
branches:
- master
- main
workflow_run:
types:
- completed
workflows:
- Test
jobs:
deploy:
runs-on: stg-local
environment:
name: Development
steps:
- name: Breaking down `github` context
run: |
id
echo actor=${{ github.actor }}
echo action_ref=${{ github.action_ref }}
echo ref=${{ github.ref }}
echo ref_name=${{ github.ref_name }}
echo event_name=${{ github.event_name }}
echo event_path=${{ github.event_path }}
echo job=${{ github.job }}
echo dispatch=${{ github.event.workflow_dispatch }}
echo run=${{ github.event.workflow_run }}