rename publish workflows
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
name: "🐳 Publish Docker"
|
||||
name: "🐳 Publish Webapp"
|
||||
|
||||
on:
|
||||
workflow_call:
|
||||
@@ -1,4 +1,4 @@
|
||||
name: "🚢 Publish Infra Images"
|
||||
name: "🚢 Publish Worker"
|
||||
|
||||
on:
|
||||
workflow_call:
|
||||
@@ -19,8 +19,8 @@ on:
|
||||
- ".github/workflows/typecheck.yml"
|
||||
- ".github/workflows/unit-tests.yml"
|
||||
- ".github/workflows/e2e.yml"
|
||||
- ".github/workflows/publish-docker.yml"
|
||||
- ".github/workflows/publish-infra.yml"
|
||||
- ".github/workflows/publish-webapp.yml"
|
||||
- ".github/workflows/publish-worker.yml"
|
||||
- "packages/**"
|
||||
- "!packages/**/*.md"
|
||||
- "!packages/**/*.eslintrc"
|
||||
@@ -57,16 +57,16 @@ jobs:
|
||||
uses: ./.github/workflows/unit-tests.yml
|
||||
secrets: inherit
|
||||
|
||||
publish:
|
||||
publish-webapp:
|
||||
needs: [typecheck, units]
|
||||
uses: ./.github/workflows/publish-docker.yml
|
||||
uses: ./.github/workflows/publish-webapp.yml
|
||||
secrets: inherit
|
||||
with:
|
||||
image_tag: ${{ github.event.inputs.image_tag }}
|
||||
|
||||
publish-infra:
|
||||
publish-worker:
|
||||
needs: [typecheck, units]
|
||||
uses: ./.github/workflows/publish-infra.yml
|
||||
uses: ./.github/workflows/publish-worker.yml
|
||||
secrets: inherit
|
||||
with:
|
||||
image_tag: ${{ github.event.inputs.image_tag }}
|
||||
|
||||
Reference in New Issue
Block a user