Fixed Ist import, merge of multiple Participants now does not try to … #131
This file contains 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: Production | |
on: | |
push: | |
branches: [ master ] | |
workflow_dispatch: | |
inputs: | |
envName: | |
description: 'Environment to deploy to' | |
required: true | |
type: string | |
default: production | |
envUrl: | |
description: 'URL of the environment' | |
required: true | |
type: string | |
default: 'https://kissj.net' | |
jobs: | |
test: | |
uses: ./.github/workflows/tests.yaml | |
build: | |
needs: test | |
uses: ./.github/workflows/build.yaml | |
with: | |
envName: production | |
secrets: | |
REGISTRY_USER: ${{ secrets.REGISTRY_USER }} | |
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }} | |
production-deploy: | |
needs: build | |
uses: ./.github/workflows/deploy.yaml | |
with: | |
envName: 'production' | |
envUrl: 'https://kissj.net' | |
secrets: inherit |