Skip to content

Commit

Permalink
Fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Reckless-Satoshi committed Jan 22, 2024
1 parent d7aef9a commit 4a03749
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,34 +37,33 @@ jobs:
echo "Versions do not match! You might have forgotten to update the version on a component."; exit $ERRCODE;
fi
integration-tests:
uses: RoboSats/robosats/.github/workflows/integration-tests.yml@main
needs: check-versions

frontend-build:
uses: RoboSats/robosats/.github/workflows/frontend-build.yml@main
needs: check-versions
with:
semver: ${{ needs.check-versions.outputs.semver }}

integration-tests:
uses: RoboSats/robosats/.github/workflows/integration-tests.yml@main
needs: [frontend-build, check-versions]

coordinator-image:
uses: RoboSats/robosats/.github/workflows/coordinator-image.yml@main
needs: [frontend-build] # django-test,
needs: [frontend-build, integration-tests, check-versions]
secrets: inherit
with:
semver: ${{ needs.check-versions.outputs.semver }}

selfhosted-client-image:
uses: RoboSats/robosats/.github/workflows/selfhosted-client-image.yml@main
needs: frontend-build
needs: [frontend-build, check-versions]
secrets: inherit
with:
semver: ${{ needs.check-versions.outputs.semver }}

web-client-image:
uses: RoboSats/robosats/.github/workflows/web-client-image.yml@main
needs: frontend-build
needs: [frontend-build, check-versions]
secrets: inherit
with:
semver: ${{ needs.check-versions.outputs.semver }}
Expand All @@ -76,7 +75,7 @@ jobs:
semver: ${{ needs.check-versions.outputs.semver }}

release:
needs: [check-versions, coordinator-image, client-image, android-build]
needs: [check-versions, integration-tests, coordinator-image, selfhosted-client-image, web-client-image, android-build]
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down

0 comments on commit 4a03749

Please sign in to comment.