fix: failing tests #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Image Build and Push | ||
|
Check failure on line 1 in .github/workflows/image-push.yml
|
||
| on: | ||
| workflow_dispatch: | ||
| push: | ||
| branches: | ||
| - experiment/runkerneljobs: | ||
| build_and_push: | ||
| name: Build and Push Images | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout Code | ||
| uses: actions/checkout@v4 | ||
| - name: Install Rust | ||
| uses: dtolnay/rust-toolchain@stable | ||
| - name: Build Sailr | ||
| run: cargo build --release | ||
| - name: Run CI Build and Push Workflow | ||
| run: target/release/sailr workflow run ci-build-push --non-interactive --apply | ||