release: update rust tests deps to latest hyperlight version (#382) #3
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
# When a new Tag with the prefix v is pushed to the repository, this workflow will create a new release branch called release/<tag name>. | |
name: Create a Release Branch | |
on: | |
push: | |
tags: | |
- "v*" | |
permissions: | |
contents: write # needed to push the new branch | |
jobs: | |
create-branch: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create Release Branch | |
run: | | |
git checkout -b release/${GITHUB_REF_NAME} | |
git push --set-upstream origin release/${GITHUB_REF_NAME} | |
shell: bash |