Removed runtime specification #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: .NET Release | |
on: | |
push: | |
tags: | |
- 'v*.*.*' # Matches version tags like v1.0.0 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup .NET Core SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '7.x' # Adjust to your .NET version | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: Publish for Ubuntu | |
run: dotnet publish --configuration Release --output ./publish/ubuntu --no-build | |
- name: Archive Ubuntu Artifacts | |
run: zip -r PetsOptimizer-ubuntu.zip ./publish/ubuntu | |
- name: Upload Ubuntu Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: publish-ubuntu | |
path: PetsOptimizer-ubuntu.zip | |
build_windows: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup .NET Core SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '7.x' # Adjust to your .NET version | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: Publish for Windows | |
run: dotnet publish --configuration Release --output ./publish/windows --no-build | |
- name: Archive Windows Artifacts | |
run: Compress-Archive -Path ./publish/windows -DestinationPath PetsOptimizer-windows.zip | |
- name: Upload Windows Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: publish-windows | |
path: PetsOptimizer-windows.zip | |
create_release: | |
runs-on: ubuntu-latest | |
needs: [build, build_windows] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Download Ubuntu build artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
name: publish-ubuntu | |
- name: Download Windows build artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
name: publish-windows | |
- name: Create GitHub Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
draft: false | |
prerelease: false | |
- name: Upload Ubuntu Release Asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./PetsOptimizer-ubuntu.zip | |
asset_name: PetsOptimizer-ubuntu.zip | |
asset_content_type: application/zip | |
- name: Upload Windows Release Asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./PetsOptimizer-windows.zip | |
asset_name: PetsOptimizer-windows.zip | |
asset_content_type: application/zip |