chore: fix publishing flow

This commit is contained in:
Karol Sójko
2023-02-10 12:57:38 +01:00
parent df793e07fd
commit 11ef2ef708
2 changed files with 9 additions and 9 deletions
@@ -13,16 +13,9 @@ on:
required: true
jobs:
e2e:
name: E2E
uses: standardnotes/server/.github/workflows/common-e2e.yml@main
secrets: inherit
publish:
runs-on: ubuntu-latest
needs: e2e
steps:
- uses: actions/checkout@v3
+9 -2
View File
@@ -88,15 +88,22 @@ jobs:
- name: Test
run: yarn test
e2e:
name: E2E
uses: standardnotes/server/.github/workflows/common-e2e.yml@main
secrets: inherit
publish-self-hosting:
needs: [ test, lint ]
needs: [ test, lint, e2e ]
name: Publish Self Hosting Docker Image
uses: standardnotes/server/.github/workflows/common-self-hosting.yml@main
secrets: inherit
publish-services:
needs: [ test, lint, e2e ]
runs-on: ubuntu-latest
needs: publish-self-hosting
steps:
- name: Checkout code
uses: actions/checkout@v3