Fix: Publish CLI WF release #161
Workflow file for this run
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: Rust CI - Migration | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] # the first 3 are the defaults if you dont specify `types` | |
| branches: | |
| - main | |
| workflow_run: | |
| workflows: ["Publish Service Images"] # Run on `main` pushes only AFTER `publish-images` workflow completes successfully | |
| types: | |
| - completed | |
| branches: | |
| - main | |
| jobs: | |
| migration-tests: | |
| uses: ./.github/workflows/rust-ci-extra-test.yml | |
| with: | |
| test_name: "E2E Migration Tests" | |
| monitored_paths: '["synd-migration-cli/", "synd-mchain/", "test-framework/tests/e2e/e2e_tests_migration.rs"]' | |
| test_filter: "test(e2e_migration)" | |
| secrets: inherit |