-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (47 loc) · 1.18 KB
/
build-and-publish.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
50
51
52
53
54
55
name: BuildAndPublish
on:
push:
branches:
- master
- develop
- feature/*
- hotfix/*
- release/*
pull_request:
permissions:
id-token: write
contents: read
attestations: write
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup dotnet 3
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
- name: Setup dotnet 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.x
- name: build and publish
env:
COHERE_API_KEY: ${{ secrets.COHERE_API_KEY }}
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
shell: pwsh
run: |
./build.ps1 -nugetPublish $true -nugetApiKey ${{ secrets.NUGET_API_KEY }}
- name: Generate artifact attestation
uses: actions/attest-build-provenance@v1
with:
subject-path: 'artifacts/NuGet'
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: nuget-packages
path: artifacts/NuGet