Skip to content

Fixing the CPU leak caused by select statement within the infinite fo… #24

Fixing the CPU leak caused by select statement within the infinite fo…

Fixing the CPU leak caused by select statement within the infinite fo… #24

Workflow file for this run

name: Prepare Release Tag
on:
push:
tags:
- "[0-9].[0-9].[0-9]"
jobs:
build:
name: Prepare Release Tag
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
ref: master
token: ${{ secrets.PAT }}
- name: Set Version
run: ./scripts/set-version.sh ${{ github.ref_name }}
- name: Commit new version
uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: master
- uses: rickstaa/action-create-tag@v1
id: "tag_create"
with:
tag: "v.${{ github.ref_name }}"
tag_exists_error: false
message: "Release version: ${{ github.ref_name }}"
token: ${{ secrets.PAT }}
env:
GITHUB_TOKEN: ${{ secrets.PAT }}