Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: CI

on: [push]
on:
push:
workflow_call:

env:
MISE_ENV: development
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/continuous-deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Continuous deployment
run-name: Continuous deployment of ${{ github.ref_name }} to QA and Test

on:
push:
branches: [next]

jobs:
ci:
permissions: {}
uses: ./.github/workflows/ci.yml
secrets: inherit
deploy:
needs: ci
strategy:
fail-fast: false
matrix:
environment: [qa, test]
permissions:
id-token: write
uses: ./.github/workflows/deploy-application.yml
with:
environment: ${{ matrix.environment }}
git_sha_to_deploy: ${{ github.sha }}