fix: workflows
All checks were successful
Build and Push Docker Image / Build And Push Docker Image (push) Successful in 26s

This commit is contained in:
2024-09-15 12:43:49 +02:00
parent 323732a114
commit b72021799c
2 changed files with 0 additions and 46 deletions

View File

@@ -13,5 +13,4 @@ jobs:
- run: docker login git.wundenbergs.de -u tim -p ${{ secrets.DOCKER_GITEA_TOKEN }}
- run: docker build . -t git.wundenbergs.de/tim/cloudflare-dynamic-dns:latest
- run: docker push git.wundenbergs.de/tim/cloudflare-dynamic-dns:latest
- run: docker rmi git.wundenbergs.de/tim/me-fit:latest

45
.vscode/launch.json vendored
View File

@@ -1,45 +0,0 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'cloudflare-dynamic-dns'",
"cargo": {
"args": [
"build",
"--bin=cloudflare-dynamic-dns",
"--package=cloudflare-dynamic-dns"
],
"filter": {
"name": "cloudflare-dynamic-dns",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'cloudflare-dynamic-dns'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=cloudflare-dynamic-dns",
"--package=cloudflare-dynamic-dns"
],
"filter": {
"name": "cloudflare-dynamic-dns",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}