Replace cli flag --prebuilt-platform
with --build-host
#6724
Workflow file for this run
This file contains 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
on: | |
pull_request: | |
schedule: | |
- cron: '0 9 * * *' # 9=9am utc+0 | |
name: Check Markdown links | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
markdown-link-check: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-quiet-mode: 'yes' | |
use-verbose-mode: 'yes' | |
base-branch: 'main' | |
check-modified-files-only: 'yes' | |
if: ${{ github.event_name == 'pull_request' }} | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-quiet-mode: 'yes' | |
use-verbose-mode: 'yes' | |
base-branch: 'main' | |
check-modified-files-only: 'no' | |
if: ${{ github.event_name == 'schedule' }} |