Skip to content

Commit

Permalink
Update frameworks
Browse files Browse the repository at this point in the history
  • Loading branch information
ezhevita authored Nov 27, 2023
1 parent 3349905 commit d2c5483
Showing 1 changed file with 12 additions and 63 deletions.
75 changes: 12 additions & 63 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ env:
DOTNET_SDK_VERSION: 7.0.x

jobs:
build-generic:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -24,76 +24,35 @@ jobs:
run: dotnet restore

- name: Build with .NET Core
run: dotnet publish -c Release -f net7.0 -o out/${{ github.event.repository.name }}-generic
run: dotnet publish -c Release -f net8.0 -o out/${{ github.event.repository.name }}

- name: Upload generic artifacts
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ github.event.repository.name }}-generic
path: out/${{ github.event.repository.name }}-generic

build-generic-netf:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Checkout submodules
run: git submodule update --init --recursive

- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_SDK_VERSION }}

- name: Restore dependencies
run: dotnet restore

- name: Build with .NET Framework
run: dotnet publish -c Release -f net481 -o out/${{ github.event.repository.name }}-generic-netf

- name: Upload generic-netf artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ github.event.repository.name }}-generic-netf
path: out/${{ github.event.repository.name }}-generic-netf
name: ${{ github.event.repository.name }}
path: out/${{ github.event.repository.name }}

release:
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
needs: [build-generic-netf, build-generic]
needs: [build]
runs-on: ubuntu-latest

steps:
- name: Download generic artifacts
uses: actions/[email protected]
with:
name: ${{ github.event.repository.name }}-generic
path: out/${{ github.event.repository.name }}-generic

- name: Download generic-netf artifacts
- name: Download artifacts
uses: actions/[email protected]
with:
name: ${{ github.event.repository.name }}-generic-netf
path: out/${{ github.event.repository.name }}-generic-netf
name: ${{ github.event.repository.name }}
path: out/${{ github.event.repository.name }}

- name: Archive generic release
- name: Archive release
uses: thedoctor0/zip-release@master
with:
directory: out
path: ${{ github.event.repository.name }}-generic
path: ${{ github.event.repository.name }}
type: 'zip'
filename: 'generic.zip'
exclusions: '*.json'

- name: Archive generic-netf release
uses: thedoctor0/zip-release@master
with:
directory: out
path: ${{ github.event.repository.name }}-generic-netf
type: 'zip'
filename: 'generic-netf.zip'
exclusions: '*.json'

- name: Create GitHub release
id: github_release
uses: actions/[email protected]
Expand All @@ -103,7 +62,7 @@ jobs:
tag_name: ${{ github.ref }}
release_name: ${{ github.event.repository.name }} V${{ github.ref }}

- name: Upload generic artifacts to GitHub release
- name: Upload artifacts to GitHub release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -112,13 +71,3 @@ jobs:
asset_path: out/generic.zip
asset_name: generic.zip
asset_content_type: application/zip

- name: Upload generic-netf artifacts to GitHub release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.github_release.outputs.upload_url }}
asset_path: out/generic-netf.zip
asset_name: generic-netf.zip
asset_content_type: application/zip

0 comments on commit d2c5483

Please sign in to comment.