added docker secrets
Some checks failed
Rust Cross-Platform Build / Detect Rust Project (push) Successful in 4s
Rust Cross-Platform Build / Set Tag Name (push) Successful in 4s
Rust Cross-Platform Build / Setup Rust Toolchain (push) Successful in 23s
Rust Cross-Platform Build / Run Tests (push) Successful in 1m4s
Rust Cross-Platform Build / Build (x86_64-unknown-linux-gnu) (push) Successful in 2m37s
Rust Cross-Platform Build / Build (x86_64-pc-windows-gnu) (push) Successful in 3m16s
Rust Cross-Platform Build / Build and Push Docker Image (push) Successful in 1m54s
Rust Cross-Platform Build / Workflow Summary (push) Successful in 1s
Rust Cross-Platform Build / Create Tag (push) Failing after 12m40s

This commit is contained in:
2025-09-26 00:15:29 +02:00
parent aa876d9e5d
commit 54fca8b1d3

View File

@@ -251,7 +251,13 @@ jobs:
tag:
name: Create Tag
needs: [build, set-tag]
if: github.event_name == 'push'
if: |
always() &&
github.event_name == 'push' &&
github.event_name != 'pull_request'
needs.detect-project.result == 'success' &&
needs.build.result == 'success' &&
needs.docker-build.result == 'success'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4