changed secrets to AUTOMATION_*
Some checks failed
Rust Cross-Platform Build / Detect Rust Project (push) Has been cancelled
Rust Cross-Platform Build / Run Tests (push) Has been cancelled
Rust Cross-Platform Build / Set Tag Name (push) Has been cancelled
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
Rust Cross-Platform Build / Build and Push Docker Image (push) Has been cancelled
Rust Cross-Platform Build / Create Tag (push) Has been cancelled
Rust Cross-Platform Build / Workflow Summary (push) Has been cancelled

This commit is contained in:
2025-09-26 11:16:38 +02:00
parent 8910155524
commit 30382fedef

View File

@@ -54,21 +54,6 @@ jobs:
exit 1
fi
#setup-rust:
# name: Setup Rust Toolchain
# needs: detect-project
# if: ${{ !failure() && !cancelled() }}
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
#
# - name: Install Rust
# uses: dtolnay/rust-toolchain@stable
# with:
# toolchain: stable
# targets: x86_64-unknown-linux-gnu, x86_64-pc-windows-gnu
# components: rustfmt, clippy
test:
name: Run Tests
needs: [detect-project]
@@ -233,8 +218,8 @@ jobs:
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
username: ${{ secrets.AUTOMATION_USERNAME }}
password: ${{ secrets.AUTOMATION_PASSWORD }}
- name: Build Docker image
uses: docker/build-push-action@v4