We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 10575d8 + 7707d30 commit fe7be04Copy full SHA for fe7be04
.github/workflows/ci.yml
@@ -1,6 +1,8 @@
1
name: CI
2
3
-on: [push]
+on:
4
+ push:
5
+ workflow_call:
6
7
env:
8
MISE_ENV: development
.github/workflows/continuous-deployment.yml
@@ -0,0 +1,24 @@
+name: Continuous deployment
+run-name: Continuous deployment of ${{ github.ref_name }} to QA and Test
+
+ branches: [next]
+jobs:
9
+ ci:
10
+ permissions: {}
11
+ uses: ./.github/workflows/ci.yml
12
+ secrets: inherit
13
+ deploy:
14
+ needs: ci
15
+ strategy:
16
+ fail-fast: false
17
+ matrix:
18
+ environment: [qa, test]
19
+ permissions:
20
+ id-token: write
21
+ uses: ./.github/workflows/deploy-application.yml
22
+ with:
23
+ environment: ${{ matrix.environment }}
24
+ git_sha_to_deploy: ${{ github.sha }}
0 commit comments