rename publish workflows

This commit is contained in:
nicktrn
2024-09-15 22:04:30 +01:00
parent cb87cb565c
commit d5b916777d
3 changed files with 8 additions and 8 deletions
@@ -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:
+6 -6
View File
@@ -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 }}