Skip to content

feat: amharic added #20

feat: amharic added

feat: amharic added #20

Workflow file for this run

name: "Deploy to GitHub"
on:
push:
tags:
- "*"
env:
PROJECT_PATH: LexiExtract/LexiExtract.csproj
jobs:
deploy:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- run: dotnet restore ${{ env.PROJECT_PATH }}
- run: dotnet build ${{ env.PROJECT_PATH }} -c Release --no-restore
- run: dotnet publish ${{ env.PROJECT_PATH }} -c Release #--self-contained -r win-x64 -p:PublishSingleFile=true
- uses: actions/create-release@v1
id: create_release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}