Skip to content

Commit

Permalink
ci: Deploy to prod workflow (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
KaylaBrady authored Jun 11, 2024
1 parent 0194de2 commit 050f07d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Deploy to Prod
run-name: ${{ github.event_name == 'workflow_dispatch' && format('Deploy {0} {1} to Prod', github.ref_type, github.ref_name) || '' }}

on:
workflow_dispatch:

jobs:
deploy:
name: Deploy ${{ github.ref_type }} ${{ github.ref_name }} to Staging
uses: ./.github/workflows/deploy.yml
with:
env: prod
deploy-desc: ${{ github.ref_type }} ${{ github.ref_name }}
secrets: inherit

0 comments on commit 050f07d

Please sign in to comment.