generated from Templates/Baseline
Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
08d5be0469 | |||
cd9ed77875 | |||
1c03c5475e | |||
440382036c | |||
ea2389b63f | |||
f0b5a81964 | |||
cd035239a7 | |||
3c6ca573f1 | |||
9b7e2151ec | |||
fde7eee1ec |
@ -20,7 +20,7 @@ jobs:
|
||||
-
|
||||
name: Docker meta
|
||||
id: meta
|
||||
uses: https://gitea.ocram85.com/actions/metadata-action@v4
|
||||
uses: https://gitea.ocram85.com/actions/metadata-action@v5
|
||||
with:
|
||||
images: |
|
||||
gitea.ocram85.com/ocram85/swarmproxy
|
||||
@ -31,10 +31,10 @@ jobs:
|
||||
type=semver,pattern={{major}}.{{minor}}
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: https://gitea.ocram85.com/actions/setup-buildx-action@v2
|
||||
uses: https://gitea.ocram85.com/actions/setup-buildx-action@v3
|
||||
-
|
||||
name: Login to Gitea Package Registry
|
||||
uses: https://gitea.ocram85.com/actions/login-action@v2
|
||||
uses: https://gitea.ocram85.com/actions/login-action@v3
|
||||
with:
|
||||
registry: gitea.ocram85.com
|
||||
username: ${{ secrets.USERNAME }}
|
||||
@ -42,7 +42,7 @@ jobs:
|
||||
password: ${{ secrets.TOKEN }}
|
||||
-
|
||||
name: Build and push
|
||||
uses: https://gitea.ocram85.com/actions/build-push-action@v4
|
||||
uses: https://gitea.ocram85.com/actions/build-push-action@v6
|
||||
with:
|
||||
push: ${{ github.event_name != 'pull_request' }}
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
|
@ -9,7 +9,7 @@ jobs:
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: https://gitea.ocram85.com/actions/checkout@v3
|
||||
- uses: https://gitea.ocram85.com/actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: setup go
|
||||
|
37
.vscode/tasks.json
vendored
Normal file
37
.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Update GiteaChangelog",
|
||||
"type": "shell",
|
||||
"command": [
|
||||
"mv 'CHANGELOG.md' 'CHANGELOG.back' &&",
|
||||
"changelog -m '${input:Milestone}' --token '${input:GiteaToken}' -c .changelog.yml generate > CHANGELOG.md &&",
|
||||
"echo '' >> CHANGELOG.md &&",
|
||||
"cat CHANGELOG.back >> CHANGELOG.md &&",
|
||||
"rm CHANGELOG.back"
|
||||
],
|
||||
"problemMatcher": []
|
||||
}
|
||||
],
|
||||
"inputs": [
|
||||
{
|
||||
"id": "GiteaToken",
|
||||
"type": "command",
|
||||
"command": "shellCommand.execute",
|
||||
"args": {
|
||||
"command": "echo $GITEA_TOKEN",
|
||||
"description": "Your personal Gitea access token"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Milestone",
|
||||
"type": "command",
|
||||
"command": "shellCommand.execute",
|
||||
"args": {
|
||||
"description": "Select or enter a open milestone",
|
||||
"command": "tea milestone ls -f title --output simple"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
13
CHANGELOG.md
13
CHANGELOG.md
@ -1,3 +1,16 @@
|
||||
## [v0.1.1](https://gitea.ocram85.com/OCram85/swarmproxy/releases/tag/v0.1.1) - 2024-06-20
|
||||
|
||||
* ✨ FEATURES
|
||||
* Adds timezone support (#14)
|
||||
* 🤖 DEPENDENCIES
|
||||
* Chore(deps): update actions/build-push-action action to v6 (#22)
|
||||
* Chore(deps): update actions/setup-buildx-action action to v3 (#21)
|
||||
* Chore(deps): update actions/metadata-action action to v5 (#20)
|
||||
* Chore(deps): update actions/login-action action to v3 (#19)
|
||||
* Chore(deps): update actions/checkout action to v4 (#18)
|
||||
* Chore(deps): update alpine docker tag to v3.20.0 (#16)
|
||||
* Update alpine Docker tag to v3.18.4 (#15)
|
||||
|
||||
## [v0.1.0](https://gitea.ocram85.com/OCram85/swarmproxy/releases/tag/v0.1.0) - 2023-07-13
|
||||
|
||||
* ✨ FEATURES
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM alpine:3.18.2
|
||||
FROM alpine:3.20.0
|
||||
|
||||
# Set labels manually, each build service differs in used or predefined labels.
|
||||
LABEL maintainer="OCram85"
|
||||
@ -29,11 +29,12 @@ ENV LOGLEVEL "Info"
|
||||
ENV MAXCLIENTS "600"
|
||||
ENV FILTER_FILE "/app/filter"
|
||||
|
||||
ENV TZ "Europe/Berlin"
|
||||
|
||||
# get existing packages
|
||||
# curl for healthchecks and debugging
|
||||
RUN apk add --no-cache \
|
||||
tinyproxy curl
|
||||
tinyproxy curl tzdata
|
||||
|
||||
COPY entrypoint.sh /app/entrypoint.sh
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user