Skip to content

Commit

Permalink
Update build-and-publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pdone committed Jun 17, 2024
1 parent 5d44419 commit aa32d1e
Showing 1 changed file with 27 additions and 12 deletions.
39 changes: 27 additions & 12 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,48 @@ on:

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 --runtime any --no-restore

run: dotnet build --configuration Release --no-restore

publish:
needs: build
#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: |
mkdir ${{ github.event.repository.name }}
cp -a ./bin/Release/net8.0/* ${{ github.event.repository.name }}
zip -r ${{ github.event.repository.name }}.zip ${{ github.event.repository.name }}
- name: Publish
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 }}.zip
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

0 comments on commit aa32d1e

Please sign in to comment.