Skip to content

Commit

Permalink
Create dotnet.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ackava authored Jul 6, 2022
1 parent 9577ea3 commit eb5c9ed
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: .NET

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
# - name: Test
# run: dotnet test --no-build --verbosity normal
- name: Pack
run: dotnet pack --no-restore
- name: Publish Eternity
run: dotnet nuget push **/*.nupkg -k ${NUGET_TOKEN} -s https://api.nuget.org/v3/index.json --no-symbols
env:
NUGET_TOKEN: ${{secrets.PUBLIC_NUGET_TOKEN}}

- name: Publish Eternity Proget
run: dotnet nuget push **/*.nupkg -k ${NUGET_KEY} -s ${NUGET_SOURCE} --no-symbols
env:
NUGET_SOURCE: ${{secrets.PROGET_NUGET}}
NUGET_KEY: ${{secrets.PROGET_NUGET_TOKEN}}

- name: Create tag
uses: actions/github-script@v6
with:
script: |
const { NBGV_SemVer2 } = process.env
github.rest.git.createRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: `refs/tags/v${NBGV_SemVer2}`,
sha: context.sha
})

0 comments on commit eb5c9ed

Please sign in to comment.