Skip to content

Release Tag: abs/v0.1.1 #6

Release Tag: abs/v0.1.1

Release Tag: abs/v0.1.1 #6

Workflow file for this run

name: Release
run-name: "Release Tag: ${{ github.ref_name }}"
on:
push:
tags:
- '*/v*.*.*'
jobs:
create-releae:
name: Build and created tagged release
runs-on: ubuntu-latest
steps:
- name: Split tag
uses: jungwinter/[email protected]
id: split
with:
msg: ${{ github.ref_name }}
separator: '/'
- name: Test split
run: |
echo ${{ steps.split.outputs._1 }}
echo ${{ steps.split.outputs._2 }}
# - name: Checkout source code
# uses: actions/[email protected]
# with:
# fetch-depth: 0
# ref: ${{ github.events.repository.default_branch }}
# - name: Setup dotnet 6.0.x
# uses: actions/[email protected]
# with:
# dotnet-version: '6.0.x'
# - name: Install dependencies
# run: dotnet restore ${{ github.ref_name }}
# - name: Build
# run: dotnet build ${{ github.ref_name }} --configuration Release