Skip to content

Deploy Infra to Review #7

Deploy Infra to Review

Deploy Infra to Review #7

name: Deploy Infra to Review
on:
push:
branches: [main]
workflow_dispatch:
inputs:
commit:
description: "Leave blank to use current HEAD, or provide an override commit SHA"
type: string
required: false
jobs:
ref:
name: Load Commit Ref
runs-on: ubuntu-latest
steps:
- id: ref
uses: passportxyz/gh-workflows/.github/actions/load_commit_ref@v1
with:
commit: ${{ inputs.commit }}
outputs:
version_tag: ${{ steps.ref.outputs.version_tag }}
refspec: ${{ steps.ref.outputs.refspec }}
deploy-infra:
name: Deploy Infra to Review
needs: [ref]
uses: ./.github/workflows/deploy_infra.yml
with:
refspec: ${{ needs.ref.outputs.refspec }}
environment: review
secrets: inherit