3 Commits

Author SHA1 Message Date
e4136efd2e chore: bump bun to 1.2.9 (#20)
All checks were successful
CD / Test (push) Successful in 20s
CD / Build and push (amd64) (push) Successful in 1m1s
CD / Build and push (arm64) (push) Successful in 2m27s
CD / Create manifest (push) Successful in 54s
Co-authored-by: Renovate Bot <renovate@t00n.de>
Reviewed-on: T00N/ts3gotify#20
2025-04-11 22:54:45 +02:00
114014edac chore: Configure Renovate (#16)
All checks were successful
CD / Test (push) Successful in 19s
CD / Build and push (amd64) (push) Successful in 59s
CD / Build and push (arm64) (push) Successful in 2m31s
CD / Create manifest (push) Successful in 10s
Co-authored-by: Renovate Bot <renovate@t00n.de>
Co-committed-by: Renovate Bot <renovate@t00n.de>
2025-04-11 22:41:35 +02:00
21c5c4a11b ci: fix repo name after org migration (#15)
All checks were successful
CD / Test (push) Successful in 22s
CD / Build and push (amd64) (push) Successful in 1m14s
CD / Build and push (arm64) (push) Successful in 3m12s
CD / Create manifest (push) Successful in 10s
Reviewed-on: T00N/ts3gotify#15
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2025-04-11 22:35:51 +02:00
6 changed files with 11 additions and 12 deletions

View File

@@ -1 +1 @@
1.1.42 1.2.9

View File

@@ -68,7 +68,7 @@ jobs:
push: true push: true
provenance: false provenance: false
tags: | tags: |
${{ env.DOCKER_REGISTRY }}/t.behrendt/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_VERSION }}-${{ matrix.arch }} ${{ env.DOCKER_REGISTRY }}/t00n/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_VERSION }}-${{ matrix.arch }}
create_manifest: create_manifest:
name: Create manifest name: Create manifest
@@ -94,8 +94,8 @@ jobs:
- name: Create manifest - name: Create manifest
run: | run: |
docker manifest create ${{ env.DOCKER_REGISTRY }}/t.behrendt/${{ steps.meta.outputs.REPO_NAME }}:latest \ docker manifest create ${{ env.DOCKER_REGISTRY }}/t00n/${{ steps.meta.outputs.REPO_NAME }}:latest \
${{ env.DOCKER_REGISTRY }}/t.behrendt/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_VERSION }}-amd64 \ ${{ env.DOCKER_REGISTRY }}/t00n/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_VERSION }}-amd64 \
${{ env.DOCKER_REGISTRY }}/t.behrendt/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_VERSION }}-arm64 ${{ env.DOCKER_REGISTRY }}/t00n/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_VERSION }}-arm64
docker manifest push ${{ env.DOCKER_REGISTRY }}/t.behrendt/${{ steps.meta.outputs.REPO_NAME }}:latest docker manifest push ${{ env.DOCKER_REGISTRY }}/t00n/${{ steps.meta.outputs.REPO_NAME }}:latest

View File

@@ -23,6 +23,3 @@ jobs:
- name: Run spellcheck - name: Run spellcheck
run: bun run check:spell run: bun run check:spell
- name: Run integration tests
run: bun run test:integration

View File

@@ -1,4 +1,4 @@
FROM oven/bun:1.1.42 AS base FROM oven/bun:1.2.9 AS base
WORKDIR /app WORKDIR /app

View File

@@ -3,8 +3,7 @@
"build": "bun build --minify --target bun --outdir dist --sourcemap src/main.ts", "build": "bun build --minify --target bun --outdir dist --sourcemap src/main.ts",
"check:code": "eslint src/ --ext .ts", "check:code": "eslint src/ --ext .ts",
"check:spell": "cspell --config cspell.code.json **/*.ts", "check:spell": "cspell --config cspell.code.json **/*.ts",
"start": "bun run src/main.ts", "start": "bun run src/main.ts"
"test:integration": "bun test ./tests/*"
}, },
"devDependencies": { "devDependencies": {
"@types/ts3-nodejs-library": "^2.0.1", "@types/ts3-nodejs-library": "^2.0.1",

3
renovate.json Normal file
View File

@@ -0,0 +1,3 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
}