Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Set Rust version to 1.71 and keep crates in sync with workspace #188

Set Rust version to 1.71 and keep crates in sync with workspace

Set Rust version to 1.71 and keep crates in sync with workspace #188

Workflow file for this run

name: Tag Release
on:
pull_request:
types:
- closed
branches:
- 'main'
jobs:
tag_release:
if: ${{ github.event.pull_request.merged == true && startsWith( github.head_ref, 'version-' ) }}
runs-on: ubuntu-latest
steps:
- name: 🧮 Checkout code
uses: actions/checkout@v3
with:
token: ${{ secrets.PAT }}
- name: Get Version
uses: mad9000/actions-find-and-replace-string@3
id: get-version
with:
source: ${{ github.head_ref }}
find: 'version-'
replace: ''
- name: Add Tag
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.PAT }}
custom_tag: ${{steps.get-version.outputs.value}}
tag_prefix: ''