-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (32 loc) · 1.18 KB
/
development.yaml
File metadata and controls
40 lines (32 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Development
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
env:
version: 1.0.0-ci
runs-on: ubuntu-latest
steps:
- name: Register GitHub source
run: dotnet nuget add source https://nuget.pkg.github.com/btshft/index.json --name github --username btshft --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
- uses: actions/checkout@v2
name: Checkout
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.301
- name: Install dependencies
run: dotnet restore
working-directory: src
- name: Build
run: dotnet build --configuration Release --no-restore -p:Version=$version.$GITHUB_RUN_NUMBER
working-directory: src
- name: Pack
run: dotnet pack PackProject.Tool.csproj --configuration Release --no-build --no-restore --output ./artifacts -p:PackageVersion=$version.$GITHUB_RUN_NUMBER
working-directory: src/Tool
- name: Push
working-directory: src/Tool/artifacts
run: dotnet nuget push *.nupkg --source "github" --api-key ${{ secrets.GITHUB_TOKEN }}