Skip to content

Release of 'main' branch to 'release' environment by philwebb #40

Release of 'main' branch to 'release' environment by philwebb

Release of 'main' branch to 'release' environment by philwebb #40

Workflow file for this run

name: Release
run-name: "Release of '${{ github.ref_name }}' branch to '${{ inputs.environment }}' environment by ${{ github.actor }}"
on:
workflow_dispatch:
inputs:
environment:
description: 'Environment'
type: environment
required: true
jobs:
stage:
name: "Stage"
runs-on: ubuntu-latest
steps:
- name: Staging
run: echo "Staging"
promote:
name: "Promote"
needs: stage
uses: ./.github/workflows/promote.yml
with:
environment: ${{ inputs.environment }}