Added “graphile” to the logs when they zodWorker starts, to make it e… #891
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: 🚀 Publish Trigger.dev Docker | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "v.docker.*" | |
- "build-*" | |
paths: | |
- ".github/workflows/publish.yml" | |
- "packages/**" | |
- "!packages/**/*.md" | |
- "!packages/**/*.eslintrc" | |
- "apps/**" | |
- "!apps/**/*.md" | |
- "!apps/**/*.eslintrc" | |
- "integrations/**" | |
- "!integrations/**/*.md" | |
- "!integrations/**/*.eslintrc" | |
- "pnpm-lock.yaml" | |
- "pnpm-workspace.yaml" | |
- "turbo.json" | |
- "docker/Dockerfile" | |
- "docker/scripts/**" | |
- "tests/**" | |
permissions: | |
id-token: write | |
packages: write | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
env: | |
AWS_REGION: us-east-1 | |
jobs: | |
typecheck: | |
uses: ./.github/workflows/typecheck.yml | |
secrets: inherit | |
units: | |
uses: ./.github/workflows/unit-tests.yml | |
secrets: inherit | |
e2e: | |
uses: ./.github/workflows/e2e.yml | |
secrets: inherit | |
publish: | |
needs: [typecheck, units, e2e] | |
uses: ./.github/workflows/publish-docker.yml | |
secrets: inherit |