Skip to content

Commit

Permalink
add more jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisInSky committed Nov 5, 2024
1 parent e293ca4 commit 7ac2958
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/rs-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,35 @@ jobs:
git commit -m "build(rs): update version to v${{ steps.release_info.outputs.version }}"
git push origin "$RC_BRANCH"
echo "rc_branch=$RC_BRANCH" >> $GITHUB_OUTPUT
ws_tests:
name: Run Workspace Tests
runs-on: ubuntu-latest
needs:
prepare

steps:
- name: Say Hello
run: |
echo "Run WS tests on branch ${{ needs.prepare.outputs.rc_branch }}"
- name: Checkout Code from Release Branch
uses: actions/checkout@v4
with:
ref: ${{ needs.prepare.outputs.rc_branch }}

cli_tests:
name: Run CLI Tests
runs-on: ubuntu-latest
needs:
prepare

steps:
- name: Say Hello
run: |
echo "Run CLI tests on branch ${{ needs.prepare.outputs.rc_branch }}"
- name: Checkout Code from Release Branch
uses: actions/checkout@v4
with:
ref: ${{ needs.prepare.outputs.rc_branch }}

0 comments on commit 7ac2958

Please sign in to comment.