Skip to content

Commit

Permalink
ci: add checkout build action (#508)
Browse files Browse the repository at this point in the history
  • Loading branch information
pyshx authored Sep 17, 2024
1 parent 223bb57 commit 45c8861
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ jobs:
runs-on: ubuntu-latest
if: ${{ !failure() && needs.ci-api.result == 'success' && github.event_name == 'push' && (github.ref_name == 'main' || github.ref_name == 'release' || startsWith(github.ref_name, 'release/')) }}
steps:
- uses: actions/checkout@v4

- uses: ./.github/actions/build_deploy_api
with:
sha_short: ${{ needs.ci-collect-info.outputs.sha_short }}
Expand All @@ -152,6 +154,8 @@ jobs:
runs-on: ubuntu-latest
if: ${{ !failure() && needs.ci-ui.result == 'success' && github.event_name == 'push' && (github.ref_name == 'main' || github.ref_name == 'release' || startsWith(github.ref_name, 'release/')) }}
steps:
- uses: actions/checkout@v4

- uses: ./.github/actions/build_deploy_ui
with:
sha_short: ${{ needs.ci-collect-info.outputs.sha_short }}
Expand Down

0 comments on commit 45c8861

Please sign in to comment.