Skip to content

Fixed CreateAttributeRelation not having rel for default and none attr #27

Fixed CreateAttributeRelation not having rel for default and none attr

Fixed CreateAttributeRelation not having rel for default and none attr #27

Workflow file for this run

name: .NET
on:
push:
tags:
- 'v*'
workflow_dispatch:
inputs:
tags:
description: git tag for the release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8
- name: Publish
run: dotnet publish -r win-x64 -c Release
- name: Make folder and zip up
run: zip -j -9 ./WizardParser.zip ./WizardParser/bin/Release/net8.0/win-x64/publish/WizardParser.exe
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.tags || github.ref }}
release_name: Release ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.tags || github.ref }}
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./WizardParser.zip
asset_name: WizardParser.zip
asset_content_type: application/zip