-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(runner): change runner groups --------- Co-authored-by: Mohit Tejani <[email protected]>
- Loading branch information
1 parent
3718f01
commit c6d5114
Showing
5 changed files
with
51 additions
and
41 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
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 |
---|---|---|
|
@@ -2,20 +2,20 @@ name: Automated product release | |
|
||
on: | ||
pull_request: | ||
branches: [ master ] | ||
types: [ closed ] | ||
|
||
branches: [master] | ||
types: [closed] | ||
|
||
jobs: | ||
check-release: | ||
name: Check release required | ||
runs-on: ubuntu-latest | ||
if: github.event.pull_request.merged && endsWith(github.repository, '-private') != true | ||
runs-on: | ||
group: Default | ||
outputs: | ||
release: ${{ steps.check.outputs.ready }} | ||
steps: | ||
- name: Checkout actions | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: pubnub/client-engineering-deployment-tools | ||
ref: v1 | ||
|
@@ -28,24 +28,25 @@ jobs: | |
token: ${{ secrets.GH_TOKEN }} | ||
publish-nuget: | ||
name: Publish to NuGet | ||
runs-on: windows-2019 | ||
needs: check-release | ||
if: needs.check-release.outputs.release == 'true' | ||
runs-on: | ||
group: windows-gh | ||
defaults: | ||
run: | ||
shell: powershell | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
# This should be the same as the one specified for on.pull_request.branches | ||
ref: master | ||
- name: Add msbuild to PATH | ||
uses: microsoft/[email protected] | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v3 | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: | | ||
dotnet-version: | | ||
2.1.519 | ||
5.0.x | ||
6.0.x | ||
|
@@ -59,30 +60,31 @@ jobs: | |
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} | ||
run: .\\.github\\workflows\\release\\publish-packages.ps1 | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: nuget-packages | ||
path: ${{ github.workspace }}\.github\.release\artifacts\*.nupkg | ||
retention-days: 1 | ||
publish: | ||
name: Publish package | ||
runs-on: ubuntu-latest | ||
needs: publish-nuget | ||
runs-on: | ||
group: Default | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
# This should be the same as the one specified for on.pull_request.branches | ||
ref: master | ||
- name: Checkout actions | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: pubnub/client-engineering-deployment-tools | ||
ref: v1 | ||
token: ${{ secrets.GH_TOKEN }} | ||
path: .github/.release/actions | ||
- name: Download artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: nuget-packages | ||
path: ${{ github.workspace }}/.github/.release/artifacts | ||
|
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
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
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