Skip to content

Merge pull request #354 from ricardozanini/update-code-conduct #40

Merge pull request #354 from ricardozanini/update-code-conduct

Merge pull request #354 from ricardozanini/update-code-conduct #40

Workflow file for this run

name: Continuous integration
on:
push:
branches: [ main ]
paths-ignore:
- '.github/**'
workflow_dispatch:
jobs:
versioning:
if: github.repository == 'serverlessworkflow/synapse' && github.ref_name == 'main'
uses: ./.github/workflows/versioning.yml
secrets: inherit
build:
needs: [versioning]
uses: ./.github/workflows/build-dotnet.yml
secrets: inherit
release:
needs: [build]
uses: ./.github/workflows/release.yml
secrets: inherit
## Automatically triggered on release(?)
# publish:
# needs: [release]
# uses: ./.github/workflows/publish.yml
# secrets: inherit