composer(deps-dev): bump zenstruck/foundry from 1.36.1 to 2.7.7 #718
This file contains hidden or 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
| name: CD/CI | |
| on: [ push ] | |
| jobs: | |
| commit-stage-workflow: | |
| name: Commit Stage | |
| uses: medicalmundi/marketplace-accounts/.github/workflows/commit-stage.yaml@main | |
| with: | |
| triggering-sha: "${{ github.sha }}" | |
| acceptance-stage-workflow: | |
| name: Acceptance Stage | |
| #needs: | |
| #- commit-stage-workflow | |
| uses: medicalmundi/marketplace-accounts/.github/workflows/acceptance-stage.yaml@main | |
| with: | |
| triggering-sha: "${{ github.sha }}" | |
| # add release here | |
| # deploy-on-production-workflow: | |
| # name: Deploy on Production server | |
| # if: startsWith(github.event.ref, 'refs/tags/v') && ${{ vars.ENABLE_DEPLOY_ON_PRODUCTION == '1' }} | |
| # needs: | |
| # - commit-stage-workflow | |
| # - acceptance-stage-workflow | |
| # #- release-stage-workflow | |
| # # note: racchiudere l'intero if con ${{ }} | |
| # # @see https://github.com/actions/runner/issues/491 | |
| # #if: ${{ vars.ENABLE_DEPLOY_ON_PRODUCTION == '1' }} | |
| # secrets: inherit | |
| # uses: medicalmundi/marketplace-account/.github/workflows/deploy-on-production.yaml@main | |
| # with: | |
| # triggering-sha: "${{ github.sha }}" | |
| deploy-on-stage-workflow: | |
| name: Deploy on Staging server | |
| needs: | |
| - commit-stage-workflow | |
| - acceptance-stage-workflow | |
| # note: racchiudere l'intero if con ${{ }} | |
| # @see https://github.com/actions/runner/issues/491 | |
| if: ${{ vars.ENABLE_DEPLOY_ON_STAGING == '1' && github.ref_name == 'main' }} | |
| secrets: inherit | |
| uses: medicalmundi/marketplace-accounts/.github/workflows/deploy-on-staging.yaml@main | |
| with: | |
| triggering-sha: "${{ github.sha }}" | |