Skip to content

Commit

Permalink
Merge pull request #16 from enlyze/fix/gh-action
Browse files Browse the repository at this point in the history
Fix Release Asset Upload Github Action
  • Loading branch information
denizs authored Sep 30, 2024
2 parents e2d116e + 645ab39 commit 151667e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ jobs:
- name: Upload `.mez` as release asset
uses: softprops/action-gh-release@v1
with:
files: bin/AnyCpu/Release/enlyze-powerbi.mez
files: bin\AnyCPU\Release\enlyze-powerbi.mez
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8 changes: 7 additions & 1 deletion enlyze.pq.proj
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="BuildMez">
<PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<OutputPath>$(MSBuildProjectDirectory)\bin\AnyCPU\Debug\</OutputPath>
<IntermediateOutputPath>$(MSBuildProjectDirectory)\obj\</IntermediateOutputPath>
<MezIntermediatePath>$(IntermediateOutputPath)MEZ\</MezIntermediatePath>
<MezOutputPath>$(OutputPath)enlyze-powerbi.mez</MezOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<OutputPath>$(MSBuildProjectDirectory)\bin\AnyCPU\Release\</OutputPath>
<IntermediateOutputPath>$(MSBuildProjectDirectory)\obj\Release\</IntermediateOutputPath>
<MezIntermediatePath>$(IntermediateOutputPath)MEZ\</MezIntermediatePath>
<MezOutputPath>$(OutputPath)enlyze-powerbi.mez</MezOutputPath>
</PropertyGroup>
<ItemGroup>
<MezContent Include="enlyze.pq" />
<MezContent Include="*.pqm" />
Expand Down

0 comments on commit 151667e

Please sign in to comment.