generated from Templates/Baseline
Compare commits
8 Commits
ac758ac88a
...
renovate/a
Author | SHA1 | Date | |
---|---|---|---|
229735a3c2 | |||
08d5be0469 | |||
cd9ed77875 | |||
1c03c5475e | |||
440382036c | |||
ea2389b63f | |||
f0b5a81964 | |||
cd035239a7 |
@ -20,7 +20,7 @@ jobs:
|
|||||||
-
|
-
|
||||||
name: Docker meta
|
name: Docker meta
|
||||||
id: meta
|
id: meta
|
||||||
uses: https://gitea.ocram85.com/actions/metadata-action@v4
|
uses: https://gitea.ocram85.com/actions/metadata-action@v5
|
||||||
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@v2
|
uses: https://gitea.ocram85.com/actions/setup-buildx-action@v3
|
||||||
-
|
-
|
||||||
name: Login to Gitea Package Registry
|
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:
|
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@v4
|
uses: https://gitea.ocram85.com/actions/build-push-action@v6
|
||||||
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@v3
|
- uses: https://gitea.ocram85.com/actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: setup go
|
- 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
|
## [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.18.5
|
FROM alpine:3.22.0
|
||||||
|
|
||||||
# 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"
|
||||||
|
Reference in New Issue
Block a user