Update md-gen alias to account for doc-gen being its own crate (#2298) #1570
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: Docs validation | |
| on: | |
| push: | |
| branches: [main, release/**] | |
| pull_request: | |
| concurrency: | |
| group: | |
| ${{ github.workflow }}-${{ github.ref_protected == 'true' && github.sha || | |
| github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| github_context: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: | | |
| echo "github.sha => ${{ github.sha }}" | |
| echo "github.ref => ${{ github.ref }}" | |
| docs-validation: | |
| uses: stellar/stellar-docs/.github/workflows/build.yml@main | |
| with: | |
| stellar-cli-ref: ${{ github.sha }} |