Skip to content

Commit

Permalink
Create release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeoliphant authored Mar 21, 2024
1 parent 1b7393c commit 3624664
Showing 1 changed file with 68 additions and 0 deletions.
68 changes: 68 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Release

on:
workflow_dispatch:

jobs:
create_release:
name: Create release
runs-on: ubuntu-latest
outputs:
upload_url: ${{steps.create_release.outputs.upload_url}}
steps:
- name: Check out repository
uses: actions/checkout@v3.3.0
with:
submodules: recursive

- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
draft: true
tag_name: ${{github.ref}}
release_name: Release ${{github.ref}}

build-windows:
name: Build Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v3.3.0
with:
submodules: recursive

- name: Configure stompbox
working-directory: ${{github.workspace}}/Dependencies/stompbox/build
run: |
cmake.exe -G "Visual Studio 17 2022" -A x64 ..
- name: Setup MSBuild and add to PATH
uses: microsoft/setup-msbuild@v1.3.1

- name: Restore NuGet Packages
run: dotnet restore

- name: Run Image Processor
working-directory: ${{github.workspace}}
run: |
msbuild .\StompboxUI.sln /t:StompboxImageProcessor /p:Configuration="Release"
StompboxImageProcessor\bin\Release\net6.0-windows\StompboxImageProcessor.exe
- name: Run MSBuild
working-directory: ${{github.workspace}}
run: msbuild .\StompboxUI.sln /p:Configuration=Release

- name: Add Plugin Archive
run: Compress-Archive -Path ${{github.workspace}}\StompboxPlugin\bin\Release\net6.0-windows\* -Destination StompboxVST3Plugin.zip

- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./StompboxVST3Plugin.zip
asset_name: StompboxVST3Plugin.zip
asset_content_type: application/zip

0 comments on commit 3624664

Please sign in to comment.