-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
113 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
name: Build and Publish NuGet | ||
|
||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: '7.0' | ||
|
||
publishclient: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- name: Restore dependencies | ||
run: dotnet restore | ||
working-directory: ./RDSServiceClient | ||
|
||
- name: Build | ||
run: dotnet build --configuration Release --no-restore | ||
working-directory: ./RDSServiceClient | ||
|
||
- name: Pack | ||
run: dotnet pack --configuration Release --no-build --output ../nupkgs | ||
working-directory: ./RDSServiceClient | ||
|
||
- name: Push to GitHub Packages | ||
run: dotnet nuget push "*.nupkg" --source "https://nuget.pkg.github.com/kyle079/index.json" --api-key ${{ secrets.GITHUB_TOKEN }} --skip-duplicate | ||
working-directory: ./nupkgs | ||
|
||
publishservice: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Restore dependencies | ||
run: dotnet restore | ||
working-directory: ./RDSService | ||
|
||
- name: Build | ||
run: dotnet build --configuration Release --no-restore | ||
working-directory: ./RDSService | ||
|
||
- name: Pack | ||
run: dotnet publish --configuration Release --no-build --output ../release | ||
working-directory: ./RDSService | ||
|
||
- name: Zip | ||
run: Compress-Archive -Path ./release/* -DestinationPath ./RDSService.zip | ||
|
||
- name: Extract Version | ||
id: get_version | ||
shell: pwsh | ||
run: | | ||
$csprojPath = './RDSService/RDSService.csproj' # Adjust the path to your project file | ||
$csproj = [xml](Get-Content $csprojPath) | ||
$version = $csproj.Project.PropertyGroup.Version | ||
echo "::set-output name=version::$version" | ||
- name: Check if Release Exists | ||
id: check_release | ||
uses: octokit/[email protected] | ||
with: | ||
route: GET /repos/:repository/releases/tags/:tag | ||
tag: ${{ steps.get_version.outputs.version }} | ||
repository: ${{ github.repository }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
continue-on-error: true | ||
|
||
- name: Create Release if Not Exists | ||
if: steps.check_release.outputs.data == null | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ steps.get_version.outputs.version }} | ||
release_name: Release ${{ steps.get_version.outputs.version }} | ||
draft: false | ||
prerelease: false | ||
|
||
- name: Get Release Upload URL | ||
id: get_upload_url | ||
run: | | ||
if [ "${{ steps.check_release.outputs.data }}" == "" ]; then | ||
echo "::set-output name=upload_url::${{ steps.create_release.outputs.upload_url }}" | ||
else | ||
echo "::set-output name=upload_url::$(echo '${{ steps.check_release.outputs.data }}' | jq -r .upload_url)" | ||
fi | ||
shell: bash | ||
|
||
- name: Upload Release Asset | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.get_upload_url.outputs.upload_url }} | ||
asset_path: ./RDSService.zip | ||
asset_name: RDSService.zip | ||
asset_content_type: application/zip |