generated from Templates/Baseline
Compare commits
No commits in common. "main" and "v0.1.0" have entirely different histories.
@ -20,7 +20,7 @@ jobs:
|
|||||||
-
|
-
|
||||||
name: Docker meta
|
name: Docker meta
|
||||||
id: meta
|
id: meta
|
||||||
uses: https://gitea.ocram85.com/actions/metadata-action@v5
|
uses: https://gitea.ocram85.com/actions/metadata-action@v4
|
||||||
with:
|
with:
|
||||||
images: |
|
images: |
|
||||||
gitea.ocram85.com/ocram85/swarmproxy
|
gitea.ocram85.com/ocram85/swarmproxy
|
||||||
@ -31,10 +31,10 @@ jobs:
|
|||||||
type=semver,pattern={{major}}.{{minor}}
|
type=semver,pattern={{major}}.{{minor}}
|
||||||
-
|
-
|
||||||
name: Set up Docker Buildx
|
name: Set up Docker Buildx
|
||||||
uses: https://gitea.ocram85.com/actions/setup-buildx-action@v3
|
uses: https://gitea.ocram85.com/actions/setup-buildx-action@v2
|
||||||
-
|
-
|
||||||
name: Login to Gitea Package Registry
|
name: Login to Gitea Package Registry
|
||||||
uses: https://gitea.ocram85.com/actions/login-action@v3
|
uses: https://gitea.ocram85.com/actions/login-action@v2
|
||||||
with:
|
with:
|
||||||
registry: gitea.ocram85.com
|
registry: gitea.ocram85.com
|
||||||
username: ${{ secrets.USERNAME }}
|
username: ${{ secrets.USERNAME }}
|
||||||
@ -42,7 +42,7 @@ jobs:
|
|||||||
password: ${{ secrets.TOKEN }}
|
password: ${{ secrets.TOKEN }}
|
||||||
-
|
-
|
||||||
name: Build and push
|
name: Build and push
|
||||||
uses: https://gitea.ocram85.com/actions/build-push-action@v6
|
uses: https://gitea.ocram85.com/actions/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
push: ${{ github.event_name != 'pull_request' }}
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
|
@ -9,7 +9,7 @@ jobs:
|
|||||||
release:
|
release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: https://gitea.ocram85.com/actions/checkout@v4
|
- uses: https://gitea.ocram85.com/actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: setup go
|
- name: setup go
|
||||||
|
37
.vscode/tasks.json
vendored
37
.vscode/tasks.json
vendored
@ -1,37 +0,0 @@
|
|||||||
{
|
|
||||||
"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,16 +1,3 @@
|
|||||||
## [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
|
## [v0.1.0](https://gitea.ocram85.com/OCram85/swarmproxy/releases/tag/v0.1.0) - 2023-07-13
|
||||||
|
|
||||||
* ✨ FEATURES
|
* ✨ FEATURES
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM alpine:3.20.0
|
FROM alpine:3.18.2
|
||||||
|
|
||||||
# Set labels manually, each build service differs in used or predefined labels.
|
# Set labels manually, each build service differs in used or predefined labels.
|
||||||
LABEL maintainer="OCram85"
|
LABEL maintainer="OCram85"
|
||||||
@ -29,12 +29,11 @@ ENV LOGLEVEL "Info"
|
|||||||
ENV MAXCLIENTS "600"
|
ENV MAXCLIENTS "600"
|
||||||
ENV FILTER_FILE "/app/filter"
|
ENV FILTER_FILE "/app/filter"
|
||||||
|
|
||||||
ENV TZ "Europe/Berlin"
|
|
||||||
|
|
||||||
# get existing packages
|
# get existing packages
|
||||||
# curl for healthchecks and debugging
|
# curl for healthchecks and debugging
|
||||||
RUN apk add --no-cache \
|
RUN apk add --no-cache \
|
||||||
tinyproxy curl tzdata
|
tinyproxy curl
|
||||||
|
|
||||||
COPY entrypoint.sh /app/entrypoint.sh
|
COPY entrypoint.sh /app/entrypoint.sh
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://gitea.ocram85.com/OCram85/swarmproxy/">
|
<a href="https://gitea.ocram85.com/OCram85/swarmproxy/">
|
||||||
<img
|
<img
|
||||||
src="assets/social-logo.png"
|
src="/OCram85/swarmproxy/raw/branch/main/assets/social-logo.png"
|
||||||
alt="Swarmproxy - Tame your traffic"
|
alt="Swarmproxy - Tame your traffic"
|
||||||
>
|
>
|
||||||
</a>
|
</a>
|
||||||
|
Loading…
Reference in New Issue
Block a user