Skip to content

Commit

Permalink
feat(ci): deploy on release
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed Aug 2, 2024
1 parent c425394 commit b6ae651
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Release

on:
release:
types: [published, updated]

concurrency:
# Do not interrupt previous workflows
group: ${{ github.workflow }}
cancel-in-progress: false

jobs:
dump:
name: Dump Contexts
runs-on: ubuntu-latest
steps:
- name: Debug GitHub Action
uses: raven-actions/[email protected]

# init:
# name: Initialize
# outputs:
# pr: ${{ steps.pr.outputs.pr }}
# runs-on: ubuntu-latest
# steps:
# # Get PR number for squash merges to main
# - name: PR Number
# id: pr
# uses: bcgov-nr/[email protected]

# deploy-prod:
# name: PROD
# needs: [init]
# secrets: inherit
# uses: ./.github/workflows/.deploy.yml
# with:
# environment: prod
# tag: ${{ needs.init.outputs.pr }}
# target: prod

0 comments on commit b6ae651

Please sign in to comment.