Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 55 additions & 55 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
@@ -1,55 +1,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@v2
with:
name: nuget-packages
path: artifacts/NuGet
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
Loading