This repository has been archived by the owner on Jan 11, 2025. It is now read-only.
style(cs): reformat file to pass dotnet_check and release new version… #151
This file contains 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
name: Create Tag | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
jobs: | |
create-tag: | |
name: Create Tag | |
runs-on: ubuntu-latest | |
env: | |
HUSKY: 0 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GH_PAT }} | |
- name: Get version | |
uses: sergeysova/jq-action@v2 | |
id: version | |
with: | |
cmd: jq -r .version ViSort/appsettings.json | |
- name: Create tag | |
run: scripts/create_tag.sh "${{ steps.version.outputs.value }}" |