wabbajack/.github/workflows/release.yml

53 lines
1.8 KiB
YAML
Raw Normal View History

2021-01-04 03:38:47 +00:00
name: Create Release
2021-01-04 03:38:12 +00:00
on:
workflow_dispatch:
inputs:
2021-01-04 03:43:42 +00:00
version:
description: 'Release Version'
required: true
2021-01-04 03:38:12 +00:00
jobs:
build:
2021-01-04 03:45:42 +00:00
runs-on: self-hosted
2021-01-04 03:38:12 +00:00
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
2021-01-04 03:48:07 +00:00
dotnet-version: 5.0.101
2021-01-04 03:38:12 +00:00
- name: Restore dependencies
run: dotnet restore
2021-01-04 21:30:00 +00:00
- name: Remove Previous App
2021-01-04 21:32:29 +00:00
uses: JesseTG/rm@v1.0.0
2021-01-04 21:30:00 +00:00
with:
path: c:\tmp\PublishApp
- name: Remove Previous Launcher
2021-01-04 21:32:29 +00:00
uses: JesseTG/rm@v1.0.0
2021-01-04 21:30:00 +00:00
with:
path: c:\tmp\PublishLauncher
2021-01-04 03:38:12 +00:00
- name: Build
run: dotnet build --no-restore
- name: Publish App
run: dotnet publish Wabbajack\Wabbajack.csproj --runtime win10-x64 --configuration Release /p:Platform=x64 -o c:\tmp\PublishApp --self-contained
- name: Publish Launcher
run: dotnet publish Wabbajack.Launcher\Wabbajack.Launcher.csproj --runtime win10-x64 --configuration Release /p:Platform=x64 -o c:\tmp\PublishLauncher --self-contained
2021-01-04 21:13:01 +00:00
- name: Sign App
2021-01-04 22:37:53 +00:00
run: \"C:\Program Files (x86)\Windows Kits\10\bin\10.0.17763.0\x86\signtool.exe\" sign /sm c:\tmp\PublishApp\Wabbajack.exe
2021-01-04 21:13:01 +00:00
- name: Sign Launcher
2021-01-04 22:37:53 +00:00
run: \"C:\Program Files (x86)\Windows Kits\10\bin\10.0.17763.0\x86\signtool.exe\" sign /sm c:\tmp\PublishLauncher\Wabbajack.exe
2021-01-04 21:30:00 +00:00
- name: Copy Launcher
uses: canastro/copy-action@0.0.2
with:
source: c:\tmp\PublishLauncher\Wabbajack.exe
destination: c:\wabbajack_releases\${{ github.event.inputs.version }}\Wabbajack.exe
- name: Zip Release
uses: vimtor/action-zip@v1
with:
files: c:\tmp\PublishApp
dest: c:\wabbajack_releases\${{ github.event.inputs.version }}\${{ github.event.inputs.version }}.zip
2021-01-04 21:13:01 +00:00