Skip to content

publish workflow

publish workflow #7

name: .NET build and publish
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
global-json-file: global.json
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
- name: Publish
run: dotnet publish --no-build --configuration Release --runtime win-x64 -p:PublishSingleFile=true --self-contained true
with:

Check failure on line 27 in .github/workflows/dotnet-build-and-publish.yml

View workflow run for this annotation

GitHub Actions / .NET build and publish

Invalid workflow file

The workflow is not valid. .github/workflows/dotnet-build-and-publish.yml (Line: 27, Col: 7): Unexpected value 'with'
working-directory: ./src/SpeechTranslatorConsole