-
Notifications
You must be signed in to change notification settings - Fork 6
49 lines (46 loc) · 1.26 KB
/
release.yml
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
41
42
43
44
45
46
47
48
49
name: Release
on:
push:
branches:
- mainstream
- release/*
release:
types: [published]
permissions: read-all
jobs:
pack:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Restore .NET local tools
run: dotnet tool restore
- name: Pack
run: dotnet run --project eng/Farkle.Build.fsproj -- -t NuGetPack
- name: Upload package artifacts
uses: actions/upload-artifact@v4
with:
name: nuget-packages
path: ./bin
release:
needs: pack
environment: ${{ github.event_name == 'release' && 'release' || 'nightly' }}
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Download package artifacts
uses: actions/download-artifact@v4
with:
name: nuget-packages
path: ./bin
- name: Publish
run: dotnet nuget push ./bin/*.nupkg --api-key ${{ secrets.NUGET_KEY }} --source ${{ vars.NUGET_FEED }}