Note_Tech

All technological notes.


Project maintained by simonangel-fong Hosted on GitHub Pages — Theme by mattgraham

GitHub Actions: Reusable Workflows

Back


Reusable Workflows

on:
  workflow_call:
    inputs:
      aws-region:
        type: string
    secrets:
      auth-token:
        required: true
    outputs:
      server-url:
      value: <value>
jobs:
  backend-infra-nonprod:
    uses: reusable-deploy@v1
    secrets:
      auth-token: $
    with:
      aws-region: $