Skip to content

Commit 6623dee

Browse files
committed
Sollte jetzt so laufen wie gewünscht
Signed-off-by: Günter Neiß <gneiss@web.de>
1 parent b563719 commit 6623dee

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.github/workflows/LinuxBuild.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
uses: actions/setup-go@v5
3131
with:
3232
go-version: ${{ env.GO_VERSION }}
33+
cache: false
3334
- name: Install Taskfile
3435
uses: arduino/setup-task@v2
3536
with:
@@ -74,5 +75,8 @@ jobs:
7475
gh release delete "$TAG" -y
7576
fi
7677
done
77-
gh release create "$TAG" *.AppImage* --title "$TAG"
78+
OLDFN=$(ls *.AppImage)
79+
NEWFN=$(sed -e s/snapshot[^_]*/$TAG-GN/g <<<$OLDFN)
80+
mv $OLDFN $NEWFN
81+
gh release create "$TAG" "$NEWFN" --title "$TAG"
7882

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
### Preface
44

55
This repository is a fork of the official [Arduino IDE](https://github.com/arduino/arduino-ide).
6-
It seams that this project is currently inactive (2 Month no commit), because my PR (Order custom board option menus as defined in platform configuration) ist still not merged.
6+
It seams that this project is currently inactive (2 Month no commit), because my PR [Order custom board option menus as defined in platform configuration](https://github.com/arduino/arduino-ide/pull/2717) ist still not merged.
77
So this repo will generate only the AppImage whith my PR.
88

99
### Download
@@ -13,8 +13,9 @@ Latest: [Download](/../../releases/latest)
1313
All Releases: [Releases](/../../releases)
1414

1515
[![Arduino2 IDE (Linux-AppImage-Build)](https://github.com/gneiss15/arduino-ide/actions/workflows/LinuxBuild.yml/badge.svg)](https://github.com/gneiss15/arduino-ide/actions/workflows/LinuxBuild.yml)
16-
## All Below is from the original Arduino IDE Repo
17-
16+
## All Below is from the original "Arduino IDE" Repo
17+
<details>
18+
<summary>Show</summary>
1819
<img src="https://content.arduino.cc/website/Arduino_logo_teal.svg" height="100" align="right" />
1920

2021
# Arduino IDE 2.x
@@ -70,3 +71,5 @@ This open source code was written by the Arduino team and is maintained on a dai
7071
## License
7172

7273
The code contained in this repository and the executable distributions are licensed under the terms of the GNU AGPLv3. The executable distributions contain third-party code licensed under other compatible licenses such as GPLv2, MIT and BSD-3. If you have questions about licensing please contact us at [license@arduino.cc](mailto:license@arduino.cc).
74+
</details>
75+

0 commit comments

Comments
 (0)