mirror of
https://github.com/Print3M/epic
synced 2026-06-06 16:34:33 +00:00
Release
This commit is contained in:
@@ -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
@@ -1,3 +1,4 @@
|
||||
output/*
|
||||
project/*
|
||||
.vscode
|
||||
.vscode
|
||||
build.sh
|
||||
+8
-3
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user