This repository has been archived by the owner on Jan 17, 2024. It is now read-only.
explain why this repository exists #1
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: Main Pipeline | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
jobs: | ||
core: | ||
uses: ./.github/workflows/pipeline-core.yml | ||
other: | ||
uses: ./.github/workflows/pipeline-other.yml | ||
release: | ||
needs: | ||
- clients | ||
- core | ||
- other | ||
uses: ./.github/workflows/release.yml | ||
Check failure on line 18 in .github/workflows/pipeline-main.yml GitHub Actions / .github/workflows/pipeline-main.ymlInvalid workflow file
|
||
secrets: | ||
TIGERBEETLE_NODE_PUBLISH_KEY: ${{secrets.TIGERBEETLE_NODE_PUBLISH_KEY}} | ||
NUGET_KEY: ${{secrets.NUGET_KEY}} | ||
MAVEN_GPG_SECRET_KEY: ${{ secrets.MAVEN_GPG_SECRET_KEY }} | ||
MAVEN_CENTRAL_USERNAME: ${{ secrets.MAVEN_CENTRAL_USERNAME }} | ||
MAVEN_CENTRAL_TOKEN: ${{ secrets.MAVEN_CENTRAL_TOKEN }} | ||
MAVEN_GPG_SECRET_KEY_PASSWORD: ${{ secrets.MAVEN_GPG_SECRET_KEY_PASSWORD }} | ||
TIGERBEETLE_DOCS_DEPLOY_KEY: ${{secrets.TIGERBEETLE_DOCS_DEPLOY_KEY}} | ||
TIGERBEETLE_GO_DEPLOY_KEY: ${{ secrets.TIGERBEETLE_GO_DEPLOY_KEY }} | ||
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }} |