Maak DEPLOY_PATH configureerbaar via Gitea Actions variable i.p.v. hardcoded #7
@@ -232,7 +232,11 @@ jobs:
|
||||
|
||||
deploy-test:
|
||||
needs: [build, test, config]
|
||||
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/master')
|
||||
# TIJDELIJK: 'pull_request' is toegevoegd zodat elke PR ook automatisch
|
||||
# naar de testomgeving deployed, om testen tijdens deze werkbranch te
|
||||
# vereenvoudigen. Verwijder de 'pull_request'-conditie hieronder weer
|
||||
# zodra dat niet meer nodig is.
|
||||
if: github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref == 'refs/heads/master')
|
||||
uses: ./.gitea/workflows/deploy.yaml
|
||||
secrets: inherit
|
||||
# Deze waarden komen uit het `env:`-blok bovenaan dit bestand, via de
|
||||
|
||||
Reference in New Issue
Block a user