This commit is contained in:
Print3M
2025-11-11 16:32:58 +01:00
parent 121736b732
commit 6d7cf230fc
3 changed files with 14 additions and 8 deletions
+4 -4
View File
@@ -47,7 +47,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release delete 1.0.0 --cleanup-tag --yes || echo "No release or tag found for 1.0.0"
gh release delete 1.0.1 --cleanup-tag --yes || echo "No release or tag found for 1.0.1"
- name: Create Release
id: create_release
@@ -55,10 +55,10 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: 1.0.0
release_name: EPIC 1.0.0
tag_name: 1.0.1
release_name: EPIC 1.0.1
body: |
- Official release!
- Wrong `pic-link` CLI output information fixed.
draft: false
prerelease: false
+2 -1
View File
@@ -1,3 +1,4 @@
output/*
project/*
.vscode
.vscode
build.sh
+8 -3
View File
@@ -72,11 +72,16 @@ func (pl *PICLinker) linkExecutable() string {
/*
Using ld linker link all object files
*/
if len(pl.Modules) == 0 {
cli.LogInfo("Linking PIC core (no modules)")
if pl.AllModules {
cli.LogInfo("Linking PIC core + all modules")
} else {
cli.LogInfof("Linking PIC core + modules (%s)", strings.Join(pl.Modules, ","))
if len(pl.Modules) == 0 {
cli.LogInfo("Linking PIC core (no modules)")
} else {
cli.LogInfof("Linking PIC core + modules (%s)", strings.Join(pl.Modules, ","))
}
}
assetsDir := filepath.Join(pl.OutputPath, "assets")