excluding builds on subbranches
Some checks failed
Rust Cross-Platform Build / Detect Rust Project (push) Successful in 4s
Rust Cross-Platform Build / Run Tests (push) Successful in 1m26s
Rust Cross-Platform Build / Build (x86_64-unknown-linux-gnu) (push) Has been cancelled
Rust Cross-Platform Build / Build (x86_64-pc-windows-gnu) (push) Has been cancelled

This commit is contained in:
2025-10-04 00:50:00 +02:00
parent fb1d016b36
commit c7b8e24a54

View File

@@ -152,7 +152,7 @@ jobs:
set-tag: set-tag:
name: Set Tag Name name: Set Tag Name
needs: [detect-project, build] needs: [detect-project, build]
if: ${{ !failure() && !cancelled() && github.event_name != 'pull_request' }} #if: ${{ !failure() && !cancelled() && github.event_name != 'pull_request' }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
outputs: outputs:
tag_name: ${{ steps.set_tag.outputs.tag_name }} tag_name: ${{ steps.set_tag.outputs.tag_name }}
@@ -211,11 +211,11 @@ set-tag:
docker-build: docker-build:
name: Build and Push Docker Image name: Build and Push Docker Image
needs: [detect-project, build, set-tag] needs: [detect-project, build, set-tag]
#if: | if: |
# always() && needs.detect-project.result == 'success' &&
# needs.detect-project.result == 'success' && needs.build.result == 'success' &&
# needs.build.result == 'success' && needs.set-tag.outputs.should_tag == 'true' &&
# github.event_name != 'pull_request' github.event_name != 'pull_request'
runs-on: ubuntu-latest runs-on: ubuntu-latest
environment: production environment: production
steps: steps: