Skip to content

Commit

Permalink
💚 fix bundle issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Roms1383 committed Nov 26, 2024
1 parent 21974bc commit 6a86cff
Show file tree
Hide file tree
Showing 2 changed files with 2 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 @@ -31,7 +31,7 @@ jobs:
release:
if: ${{ startsWith(github.event.ref, 'refs/tags') }}
runs-on: windows-2019
needs: bundle
needs: [bundle, bundle-dev-only]
steps:
- name: Download artifact
uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ staging TO=game_dir: (setup join(TO, red4ext_deploy_dir)) (setup join(TO, redscr

ci TO PROFILE='release' FEATURES='': (setup join(TO, red4ext_deploy_dir)) (setup join(TO, redscript_deploy_dir)) (build PROFILE FEATURES TO) (reload TO)
@if('{{PROFILE}}' -ieq 'release') { just no-debug '{{TO}}'; Write-Host "Removed debug files"; } else { Write-Host "Kept debug files untouched"; }
@if('{{PROFILE}}' -ieq 'debug') { just copy '{{ join(red4ext_bin_dir, "release", plugin_name + ".pdb") }}' '{{ join(TO, red4ext_deploy_dir, plugin_name + ".pdb") }}'; }
@if('{{PROFILE}}' -ieq 'debug') { just copy '{{ join(red4ext_bin_dir, "debug", plugin_name + ".pdb") }}' '{{ join(TO, red4ext_deploy_dir, plugin_name + ".pdb") }}'; }
@just now

optimize TO:
Expand Down

0 comments on commit 6a86cff

Please sign in to comment.