mirror of
https://github.com/Biarity/Sieve.git
synced 2024-11-25 14:53:27 +01:00
43 lines
980 B
YAML
43 lines
980 B
YAML
# ------------------------------------------------------------------------------
|
|
# <auto-generated>
|
|
#
|
|
# This code was generated.
|
|
#
|
|
# - To turn off auto-generation set:
|
|
#
|
|
# [GitHubActions (AutoGenerate = false)]
|
|
#
|
|
# - To trigger manual generation invoke:
|
|
#
|
|
# nuke --generate-configuration GitHubActions_ci_publish --host GitHubActions
|
|
#
|
|
# </auto-generated>
|
|
# ------------------------------------------------------------------------------
|
|
|
|
name: ci_publish
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'releases/*'
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
ubuntu-latest:
|
|
name: ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Setup dotnet
|
|
uses: actions/setup-dotnet@v3
|
|
with:
|
|
dotnet-version: |
|
|
3.1.x
|
|
6.0.x
|
|
8.0.x
|
|
- name: Run './build.cmd CiPublish'
|
|
run: ./build.cmd CiPublish
|
|
env:
|
|
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
|