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 11e6f0b
Showing 1 changed file with 49 additions and 12 deletions.
61 changes: 49 additions & 12 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,70 @@ 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 }}
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.zip $FILE_NAME
- name: Upload
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.runtime }}
path: $FILE_NAME.zip

release:
needs: publish
runs-on: ubuntu-latest
steps:
- name: Download 1
uses: actions/download-artifact@v2
with:
name: linux-x64

- name: Download 2
uses: actions/download-artifact@v2
with:
name: win-x64

- name: Download 3
uses: actions/download-artifact@v2
with:
name: osx-x64

- 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 11e6f0b

Please sign in to comment.