Skip to content

unify datetime timezone handling #24

unify datetime timezone handling

unify datetime timezone handling #24

Workflow file for this run

name: Publish
on:
push:
tags:
- 'v*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Build
run: dotnet build osu.NET/osu.NET.csproj --configuration Release
- name: Pack
run: dotnet pack osu.NET/osu.NET.csproj --configuration Release -o artifacts --no-build /p:Version=${GITHUB_REF#refs/tags/v}
- name: Publish to NuGet
run: dotnet nuget push artifacts/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json