Skip to content

Publish Release

Publish Release #1

Workflow file for this run

name: Publish Release
on:
push:
tags:
- '*'
jobs:
windows:
name: windows-2022
runs-on: windows-2022
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Cache packages
uses: actions/cache@v4
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
- name: Run Nuke Build
run: ./.nuke/build.cmd PublishGitHub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}