generated from bcgov/quickstart-openshift
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a4997e1
commit 8fb9cb9
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |