Skip to content

Commit

Permalink
Rsdk 7589/release cadence (#665)
Browse files Browse the repository at this point in the history
  • Loading branch information
njooma authored Jun 25, 2024
1 parent 0450d57 commit 330b342
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,19 +69,19 @@ jobs:
- name: Add + Commit
uses: EndBug/add-and-commit@v9
with:
new_branch: v${{ env.SDK_VERSION }}
new_branch: release/v${{ env.SDK_VERSION }}
message: Bump version to ${{ env.SDK_VERSION }}

- name: Open PR
run: |
gh pr create -t "v${{ env.SDK_VERSION }}" -b "This is an auto-generated PR to merge the release branch back into main upon successful release" -B "main" -H "v${{ env.SDK_VERSION }}"
gh pr create -t "release/v${{ env.SDK_VERSION }}" -b "This is an auto-generated PR to merge the release branch back into main upon successful release" -B "main" -H "release/v${{ env.SDK_VERSION }}"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

build:
uses: ./.github/workflows/build-wheels.yml
with:
branch: v${{ needs.prepare.outputs.version }}
branch: release/v${{ needs.prepare.outputs.version }}
needs: prepare
if: github.repository_owner == 'viamrobotics'

Expand All @@ -103,4 +103,4 @@ jobs:
draft: true
prerelease: false
fail_on_unmatched_files: true
target_commitish: v${{ needs.prepare.outputs.version }}
target_commitish: release/v${{ needs.prepare.outputs.version }}

0 comments on commit 330b342

Please sign in to comment.