diff --git a/.github/workflows/stable.yml b/.github/workflows/stable.yml new file mode 100644 index 00000000..9d4c0fbb --- /dev/null +++ b/.github/workflows/stable.yml @@ -0,0 +1,14 @@ +name: Staging CI/CD +# https://docs.github.com/en/actions/managing-workflow-runs/skipping-workflow-runs +on: + push: + branches: + - main +jobs: + # Continuous-Integration: + # uses: ./.github/workflows/ci.yml + # secrets: inherit + Deploy-Beta: + needs: [Create-Release] + uses: ./.github/workflows/cd.yml + secrets: inherit