Skip to content
This repository has been archived by the owner on Jan 11, 2025. It is now read-only.

chore(version): bump 0.1.5 #150

chore(version): bump 0.1.5

chore(version): bump 0.1.5 #150

Workflow file for this run

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 }}"