wabbajack/.github/workflows/release.yml
Timothy Baldridge 14f379b474 swap order
2022-05-23 10:22:14 -06:00

23 lines
472 B
YAML

name: Create Release (Windows)
on:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Extract Version
run: echo "VERSION=$(python scripts/version_extract.py)" >> $GITHUB_ENV
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build ${{ env.VERSION}}
run: dotnet build