Update build-and-publish.yml #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Publish | ||
on: | ||
push: | ||
tags: [ "v*.*.*" ] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 8.0.x | ||
- name: Restore dependencies | ||
run: dotnet restore | ||
- name: Build | ||
run: dotnet build --configuration Release --no-restore | ||
publish: | ||
needs: build | ||
Check failure on line 24 in .github/workflows/build-and-publish.yml GitHub Actions / Build and PublishInvalid workflow file
|
||
#runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
#os: [ubuntu-latest, windows-latest, macos-latest] | ||
runtime: ['linux-x64', 'win-x64', 'osx-x64'] | ||
env: | ||
FILE_NAME: ${{ github.event.repository.name }}-${{ matrix.runtime }}.zip | ||
steps: | ||
- name: Zip | ||
if: startsWith(github.ref, 'refs/tags/') | ||
run: | | ||
dotnet publish -c Release -r ${{ matrix.runtime }} | ||
mkdir $FILE_NAME | ||
cp -a ./bin/Release/net8.0/${{ matrix.runtime }}/publish/* $FILE_NAME | ||
zip -r $FILE_NAME ${{ github.event.repository.name }} | ||
release: | ||
needs: publish | ||
steps: | ||
- name: Release | ||
uses: softprops/action-gh-release@v2 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: | | ||
${{ github.event.repository.name }}-linux-x64.zip | ||
${{ github.event.repository.name }}-win-x64.zip | ||
${{ github.event.repository.name }}-osx-x64.zip | ||
name: ${{ github.ref_name }} | ||
draft: true |