Skip to content

Project Release & Deploy Workflow #4

Project Release & Deploy Workflow

Project Release & Deploy Workflow #4

name: Project Release & Deploy Workflow
# TeqBench - Release & Deploy Workflow - Manually initiate a release and deployment workflow.
on:
workflow_dispatch:
inputs:
# This not the most optimal solution, however, as of 1/4/24, no (apparent) way to share common workflow display input.
# So, this is extra code to copy/paste into other repo workflow files. Revisit at a later time to improve; maybe use GitHub project
# boards/tickets to initiate a release/deployment, no clear option yet.
release_type:
type: choice
description: Release Type
options:
- MAJOR
- MINOR
- PATCH
jobs:
# This not the most optimal solution, however, as of 1/4/24, cannot limit the workflow_dispatch to a specific branch via the UI.
# Also, this is extra code to copy/paste into other repo workflow files. Revisit at a later time to improve.
validate-dispatch-inputs:
name: Validate Dispatch Inputs Job
runs-on: ubuntu-latest
steps:
- name: Validate Main Branch Selection
if: github.event_name == 'workflow_dispatch' && github.ref != 'refs/heads/main'
run: |
echo "This workflow can only be initiated using the 'main' branch."
exit 1
release_deploy:
name: Release & Deploy Job
needs: validate-dispatch-inputs
uses: teqbench/teqbench.devops.githhub.workflows/.github/workflows/release-deploy.yml@main

Check failure on line 34 in .github/workflows/release-deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release-deploy.yml

Invalid workflow file

error parsing called workflow ".github/workflows/release-deploy.yml" -> "teqbench/teqbench.devops.githhub.workflows/.github/workflows/release-deploy.yml@main" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
secrets: inherit
with:
release_type: ${{ github.event.inputs.release_type }}