Skip to content

Commit

Permalink
Try another fix for path issue
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwellmattryan committed Nov 14, 2024
1 parent 12dcf3d commit 9967e8e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ jobs:

- name: Set Environment Variables
run: |
ARTIFACTS_PATH=bin/${{ env.PLUGIN_NAME }}_artefacts/${{ inputs.build_type }}
echo "VST3_PATH=$ARTIFACTS_PATH/VST3/${{ env.PLUGIN_NAME }}.vst3" >> $GITHUB_ENV
echo "AU_PATH=$ARTIFACTS_PATH/AU/${{ env.PLUGIN_NAME }}.component" >> $GITHUB_ENV
echo "ARTIFACTS_PATH=bin/${{ env.PLUGIN_NAME }}_artefacts/${{ inputs.build_type }}" >> $GITHUB_ENV
echo "VST3_PATH=${{ env.ARTIFACTS_PATH }}/VST3/${{ env.PLUGIN_NAME }}.vst3" >> $GITHUB_ENV
echo "AU_PATH=${{ env.ARTIFACTS_PATH }}/AU/${{ env.PLUGIN_NAME }}.component" >> $GITHUB_ENV
echo "ARTIFACT_NAME=${{ env.PLUGIN_NAME }}-${{ runner.os }}" >> $GITHUB_ENV
- name: Pluginval (MacOS)
Expand Down
18 changes: 14 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
name: Release

on: workflow_dispatch
on:
workflow_dispatch:
inputs:
stage:
description: Target plugin build stage
required: true
type: choice
default: production
options:
- production
- beta

env:
BUILD_TYPE: Release
Expand All @@ -18,8 +28,8 @@ jobs:
include:
- name: macOS
os: macos-13
- name: Windows
os: windows-2022
# - name: Windows
# os: windows-2022
with:
os: ${{ matrix.os }}
build_type: Release
Expand Down Expand Up @@ -128,6 +138,6 @@ jobs:
- name: Draft Release
uses: softprops/actions-gh-release@v2
with:
prerelease: false
prerelease: ${{ inputs.stage != 'production' }}
files: |
*/*.dmg

0 comments on commit 9967e8e

Please sign in to comment.