testing build workflow
Some checks failed
Test the running changes / Test (push) Successful in 1m51s
Build and push Docker image / build (push) Has been cancelled

This commit is contained in:
2025-11-15 02:09:17 +02:00
parent 8d47704b7e
commit be58e2eb79
3 changed files with 25 additions and 0 deletions

View File

@@ -1,32 +0,0 @@
name: Build and deploy Docker image
on:
push:
branches:
- master
env:
CARGO_TERM_COLOR: always
jobs:
deploy:
name: Deploy
runs-on: rust-latest
steps:
- run: apt-get update -y && apt-get install nodejs -y
- uses: actions/checkout@v4
- run: cargo build --release
- uses: docker/setup-buildx-action@v3
with:
config-inline: |
[registry."gitea-http.apps.svc.cluster.local:3000"]
http = true
insecure = true
- uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: "gitea-http.apps.svc.cluster.local:3000".....