Skip to content

Commit 37eeb20

Browse files
committed
Release 0.1.4 (#2)
1 parent 89d5d4c commit 37eeb20

File tree

5 files changed

+22
-11
lines changed

5 files changed

+22
-11
lines changed

.github/workflows/main-docker.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,6 @@ jobs:
5454
${{ secrets.DOCKER_USERNAME }}/${{ env.IMAGE_NAME }}:latest
5555
${{ secrets.DOCKER_USERNAME }}/${{ env.IMAGE_NAME }}:${{ env.VERSION }}
5656
ghcr.io/${{ secrets.DOCKER_USERNAME }}/${{ env.IMAGE_NAME }}:latest
57-
ghcr.io/${{ secrets.DOCKER_USERNAME }}/${{ env.IMAGE_NAME }}:${{ env.VERSION }}
57+
ghcr.io/${{ secrets.DOCKER_USERNAME }}/${{ env.IMAGE_NAME }}:${{ env.VERSION }}
58+
cache-from: type=gha
59+
cache-to: type=gha,mode=max

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION=0.1.3
1+
VERSION=0.1.4

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22
# Change Log
33
All notable changes to this project will be documented in this file.
44

5-
## [0.1.4] - 2025-04-
5+
## [0.1.4] - 2025-04-02
66
### Added
77
- User defined command [#2](https://github.com/aceberg/AnyAppStart/issues/2)
88
- Variable `$ITEMNAME` now can be used in `SSH` too
99
- Vite config update
1010
- Optimized Docker build
1111

12+
### Fixed
13+
- Alpine goreleaser binary
14+
1215
## [0.1.3] - 2025-03-07
1316
### Added
1417
- SSH from Docker container

backend/.goreleaser.yaml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,15 @@ builds:
1717
- "7"
1818

1919
nfpms:
20-
- maintainer: aceberg <aceberg_a@proton.me>
20+
- id: systemd
21+
formats:
22+
- deb
23+
- rpm
24+
maintainer: aceberg <aceberg_a@proton.me>
2125
description: Start/Stop Docker, Systemd and other apps
2226
homepage: https://github.com/aceberg/AnyAppStart
2327
license: MIT
2428
section: utils
25-
formats:
26-
- deb
27-
- rpm
28-
- apk
29-
- termux.deb
3029
contents:
3130
- src: ./configs/AnyAppStart.service
3231
dst: /lib/systemd/system/AnyAppStart.service
@@ -35,6 +34,15 @@ nfpms:
3534
scripts:
3635
postinstall: ./configs/postinstall.sh
3736

37+
- id: alpine
38+
formats:
39+
- apk
40+
maintainer: aceberg <aceberg_a@proton.me>
41+
description: Start/Stop Docker, Systemd and other apps
42+
homepage: https://github.com/aceberg/AnyAppStart
43+
license: MIT
44+
section: utils
45+
3846
archives:
3947
- files:
4048
- LICENSE

backend/cmd/AnyAppStart/main.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ package main
33
import (
44
"flag"
55

6-
_ "time/tzdata"
7-
86
"github.com/aceberg/AnyAppStart/internal/web"
97
)
108

0 commit comments

Comments
 (0)