Skip to content

Merge pull request #32 from polojs/deps/update-vulnerable-packages #40

Merge pull request #32 from polojs/deps/update-vulnerable-packages

Merge pull request #32 from polojs/deps/update-vulnerable-packages #40

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Continuous Integration
on:
push:
tags:
- '*'
branches:
- main
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
###################################################
# BUILD
###################################################
build:
name: Build
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: Install .NET SDK
uses: actions/setup-dotnet@v5
- name: Build
shell: bash
run: dotnet build.cs --target="publish" --nuget-key="${{secrets.NUGET_API_KEY}}"