-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from dominant-strategies/cicd
Cicd
- Loading branch information
Showing
10 changed files
with
179 additions
and
4 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
.github/workflows/generate-docs.yml → .github/legacy-workflows/generate-docs.yml
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Generate Documentation | ||
## name: Generate Documentation | ||
|
||
on: | ||
push: | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,20 @@ | ||
name: Auto Version Branch Workflow | ||
on: | ||
pull_request: | ||
types: [closed] | ||
branches: | ||
- 'v?[0-9]+.[0-9]+' | ||
jobs: | ||
call-common-workflow: | ||
uses: dominant-strategies/quai-cicd/.github/workflows/deploy-sandbox-common.yml@main | ||
with: | ||
needs_build: true | ||
install_command: "npm ci" | ||
build_command": "npm run build-clean" | ||
cloud_deploy: false | ||
skip_deploy: true | ||
update_version: false | ||
needs_docker: false | ||
secrets: | ||
GH_PAT: ${{ secrets.GH_PAT }} | ||
BUILD_ARGS: '' |
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,25 @@ | ||
name: Cut Release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
branch: | ||
description: 'Branch to use' | ||
required: true | ||
default: 'master' | ||
jobs: | ||
call-common-workflow: | ||
uses: dominant-strategies/quai-cicd/.github/workflows/cut-release-common.yml@main | ||
with: | ||
branch: main | ||
needs_build: true | ||
needs_docker: false | ||
install_command: "npm ci" | ||
build_command: "npm run build-clean" | ||
cloud_deploy: false | ||
skip_deploy: true | ||
update_version: true | ||
secrets: | ||
GH_PAT: ${{ secrets.GH_PAT }} | ||
BUILD_ARGS: '' | ||
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY2 }} | ||
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }} |
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,19 @@ | ||
name: Auto Dev Workflow | ||
on: | ||
pull_request: | ||
types: [closed] | ||
branches: [ "master" ] | ||
jobs: | ||
call-common-workflow: | ||
uses: dominant-strategies/quai-cicd/.github/workflows/deploy-dev-common.yml@main | ||
with: | ||
needs_build: true | ||
install_command: "npm ci" | ||
build_command: "npm run build-clean" | ||
cloud_deploy: false | ||
skip_deploy: true | ||
update_version: false | ||
needs_docker: false | ||
secrets: | ||
GH_PAT: ${{ secrets.GH_PAT }} | ||
BUILD_ARGS: '' |
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,19 @@ | ||
name: Deploy to Garden | ||
on: workflow_dispatch | ||
jobs: | ||
call-common-workflow: | ||
uses: dominant-strategies/quai-cicd/.github/workflows/deploy-sandbox-common.yml@main | ||
with: | ||
needs_build: true | ||
needs_docker: false | ||
install_command: "npm ci" | ||
build_command: "npm run build-clean" | ||
cloud_deploy: false | ||
skip_deploy: true | ||
update_version: true | ||
secrets: | ||
GH_PAT: ${{ secrets.GH_PAT }} | ||
BUILD_ARGS: '' | ||
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY2 }} | ||
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }} | ||
GH_GCP_TOKEN: ${{ secrets.GH_GCP_TOKEN }} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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