Skip to content

Update dependencies #24

Update dependencies

Update dependencies #24

Workflow file for this run

name: Publish
on:
push:
tags:
- '*'
branches:
- main
env:
# Set the DOTNET_SKIP_FIRST_TIME_EXPERIENCE environment variable to stop wasting time caching packages
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
# Disable sending usage data to Microsoft
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
###################################################
# PUBLISH
###################################################
publish:
name: Publish
if: "!contains(github.event.head_commit.message, 'skip-ci')"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup dotnet
uses: actions/setup-dotnet@v5
- name: Publish
shell: bash
run: |
dotnet tool restore
dotnet build.cs --target="publish" --nuget-key="${{secrets.NUGET_API_KEY}}"