diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4560613..89f7fb8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,14 +53,13 @@ jobs: - name: Build self-contained assembly run: | dotnet publish -c Release -r ${{ env.runtime }} --self-contained -p:PublishSingleFile=true -o ./publish/${{ env.runtime }} - mkdir -p ./bin - mv ./publish/${{ env.runtime }}/EmpireCompiler ./bin/EmpireCompiler + mv ./publish/${{ env.runtime }}/EmpireCompiler ./EmpireCompiler/EmpireCompiler shell: bash - name: Git Archive All run: | python scripts/git_archive_all.py \ - --include "bin/EmpireCompiler" \ + --include "EmpireCompiler/EmpireCompiler" \ publish/EmpireCompiler-${{ env.runtime }}-${{ github.event.inputs.release_version }}.tgz shell: bash diff --git a/.gitignore b/.gitignore index 220ad86..48b34fb 100644 --- a/.gitignore +++ b/.gitignore @@ -329,4 +329,5 @@ ASALocalRun/ # MFractors (Xamarin productivity tool) working folder .mfractor/ -bin/ \ No newline at end of file +# Built Binary +EmpireCompiler/EmpireCompiler \ No newline at end of file