mirror of
https://github.com/tonytins/cstdotnet.git
synced 2025-03-22 08:22:18 +00:00
Updated .NET Github Actions
- Use .NET setup v3 - Removed staging action - Cache packages
This commit is contained in:
parent
6bc99bb7cc
commit
a228081732
3 changed files with 6 additions and 26 deletions
4
.github/workflows/dotnet.yml
vendored
4
.github/workflows/dotnet.yml
vendored
|
@ -10,6 +10,8 @@ jobs:
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
runs-on: ${{ matrix.platforms }}
|
runs-on: ${{ matrix.platforms }}
|
||||||
|
env:
|
||||||
|
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
dotnet: ["6.0.x"]
|
dotnet: ["6.0.x"]
|
||||||
|
@ -17,7 +19,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Setup .NET
|
- name: Setup .NET
|
||||||
uses: actions/setup-dotnet@v1
|
uses: actions/setup-dotnet@v3
|
||||||
with:
|
with:
|
||||||
dotnet-version: ${{ matrix.dotnet }}
|
dotnet-version: ${{ matrix.dotnet }}
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|
4
.github/workflows/publish.yml
vendored
4
.github/workflows/publish.yml
vendored
|
@ -7,10 +7,12 @@ jobs:
|
||||||
publish:
|
publish:
|
||||||
name: Package Release
|
name: Package Release
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Setup dotnet
|
- name: Setup dotnet
|
||||||
uses: actions/setup-dotnet@v1
|
uses: actions/setup-dotnet@v3
|
||||||
with:
|
with:
|
||||||
dotnet-version: "6.0.x"
|
dotnet-version: "6.0.x"
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|
24
.github/workflows/staging.yml
vendored
24
.github/workflows/staging.yml
vendored
|
@ -1,24 +0,0 @@
|
||||||
name: Publish Testing Package
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- "staging/**"
|
|
||||||
jobs:
|
|
||||||
publish:
|
|
||||||
name: Package Release
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- name: Setup dotnet
|
|
||||||
uses: actions/setup-dotnet@v1
|
|
||||||
with:
|
|
||||||
dotnet-version: "6.0.x"
|
|
||||||
- name: Install dependencies
|
|
||||||
run: dotnet restore
|
|
||||||
- name: Package
|
|
||||||
run: dotnet pack --no-restore -o .
|
|
||||||
- name: Publish to Nuget
|
|
||||||
env:
|
|
||||||
NUGET_KEY: ${{ secrets.DEPLOY_TEST_KEY }}
|
|
||||||
NUGET_API: https://apiint.nugettest.org/v3/index.json
|
|
||||||
run: dotnet nuget push CSTNet.*.nupkg --api-key $NUGET_KEY --source $NUGET_API
|
|
Loading…
Add table
Reference in a new issue