Compare commits
21
Commits
1.3.0
...
049a3146ac
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
049a3146ac | ||
|
|
86bd5d23ee | ||
|
|
21b6080185 | ||
|
|
4ad4516304 | ||
|
|
cf832f4b05 | ||
|
|
593e636d9a | ||
|
|
4a5e4fc893 | ||
|
|
d1d65420d3 | ||
|
|
c378376881
|
||
|
|
598566b588 | ||
|
|
025c605d93 | ||
|
|
9fa9837499 | ||
|
|
7a9b02140e | ||
|
|
761284bd48 | ||
|
|
cb793f051c | ||
|
|
4aa9145c07
|
||
|
|
486182c91c | ||
|
|
ab15603652 | ||
|
|
70ea428e41 | ||
|
|
56b6ed52d2 | ||
|
|
245f86f4d7
|
@@ -3,6 +3,7 @@ name: default-request-adder
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
tags: ['*']
|
||||
pull_request:
|
||||
branches: [main]
|
||||
|
||||
@@ -28,3 +29,14 @@ jobs:
|
||||
run: |
|
||||
go install golang.org/x/vuln/cmd/govulncheck@latest
|
||||
govulncheck ./...
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
BUILDTOOLS_CONTENT: ${{ secrets.BUILDTOOLS_CONTENT }}
|
||||
GITEA_REPOSITORY: ${{ gitea.repository }}
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: buildtool/setup-buildtools-action@v1
|
||||
- name: Build and push
|
||||
run: unset GITEA_TOKEN && build --platform linux/amd64,linux/arm64 && push
|
||||
|
||||
@@ -2,6 +2,29 @@
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [1.6.0] - 2026-01-16
|
||||
|
||||
### 🚀 Features
|
||||
|
||||
- Add multi-platform build support (amd64, arm64)
|
||||
|
||||
### ⚙️ Miscellaneous Tasks
|
||||
|
||||
- *(deps)* Update golang:1.25.5 docker digest to 3a01526 (#223)
|
||||
- *(deps)* Update dependency go to v1.25.6 (#225)
|
||||
|
||||
## [1.5.0] - 2026-01-10
|
||||
|
||||
### 🚀 Features
|
||||
|
||||
- Add Docker build and push to CI workflow
|
||||
|
||||
## [1.4.0] - 2026-01-10
|
||||
|
||||
### 🚀 Features
|
||||
|
||||
- Run CI workflow on tags
|
||||
|
||||
## [1.3.0] - 2026-01-09
|
||||
|
||||
### 🚀 Features
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
FROM amd64/golang:1.25.5@sha256:ad03ba93327b8a6143b49373790b5d92c28067bdb814418509466122ee9c9e63 as deps
|
||||
FROM golang:1.25.6@sha256:fc24d3881a021e7b968a4610fc024fba749f98fe5c07d4f28e6cfa14dc65a84c as deps
|
||||
WORKDIR /build
|
||||
ADD go.* /build
|
||||
RUN go mod download
|
||||
|
||||
Reference in New Issue
Block a user