Skip to content

Update build-and-publish.yml #4

Update build-and-publish.yml

Update build-and-publish.yml #4

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

View workflow run for this annotation

GitHub Actions / Build and Publish

Invalid workflow file

The workflow is not valid. .github/workflows/build-and-publish.yml (Line: 24, Col: 5): Required property is missing: runs-on .github/workflows/build-and-publish.yml (Line: 42, Col: 5): Required property is missing: runs-on
#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