Skip to content

Apple fixes

Apple fixes #129

Workflow file for this run

name: Build Libraries
on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
push:
branches:
- master
- dev
- v*
paths:
- "src/**"
- "build/**"
- ".github/workflows/**"
env:
NugetApiKey: ${{secrets.NUGETAPIKEY}}
DotNetVersion: 7.0.202
#TwitterConsumerKey: ${{secrets.TWITTER_CONSUMER_KEY}}
#TwitterConsumerSecret: ${{secrets.TWITTER_CONSUMER_SECRET}}
#TwitterAccessToken: ${{secrets.TWITTER_ACCESS_TOKEN}}
#TwitterAccessTokenSecret: ${{secrets.TWITTER_ACCESS_TOKEN_SECRET}}
#DiscordToken: ${{secrets.DISCORD_TOKEN}}
#DiscordGuildId: '679761126598115336'
#DiscordChannelId: '803717285986566174'
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DotNetVersion }}
- name: Build
run: dotnet run --project build/ShinyApiBuild.csproj
- name: Publish Artifacts
uses: actions/upload-artifact@v2
with:
name: nugets
path: ${{ github.workspace }}/artifacts
retention-days: 5