Skip to content

Commit

Permalink
move where bin is placed becaues of hardcoded paths
Browse files Browse the repository at this point in the history
  • Loading branch information
vinnybod committed Feb 5, 2025
1 parent c80c1cc commit 2c44267
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -329,4 +329,5 @@ ASALocalRun/
# MFractors (Xamarin productivity tool) working folder
.mfractor/

bin/
# Built Binary
EmpireCompiler/EmpireCompiler

0 comments on commit 2c44267

Please sign in to comment.