Skip to content

chore: Add github workflow files #1

chore: Add github workflow files

chore: Add github workflow files #1

Workflow file for this run

name: Release
on:
push:
tags-ignore:
- 'v*.*.*'
jobs:
create-releae:
name: Build and created tagged release
runs-on: ubuntu-latest
steps:
- name: Install archive tool
run: sudo apt install zip
- 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
- name: Build
run: dotnet build ${{ env.github.ref_name }} --configuration Release