Add note about VLC video playback being preferred #1509
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: Test Build | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - ready_for_review | |
| # Enable manual trigger for easier debugging | |
| workflow_dispatch: | |
| permissions: | |
| id-token: write # This is required for requesting the JWT | |
| contents: read # This is required for actions/checkout | |
| jobs: | |
| test-build: | |
| name: Test Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: ssh-agent setup | |
| uses: webfactory/ssh-agent@v0.9.0 | |
| with: | |
| ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
| ssh: | | |
| default=${{ env.SSH_AUTH_SOCK }} | |
| - name: Build | |
| uses: dagger/dagger-for-github@847ae4458ef34fe9b5f566655957bde6d4891112 # v7.0.3 | |
| with: | |
| version: "0.15.3" | |
| verb: call | |
| args: build | |
| publish-docs-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "Docs publish" | |
| uses: ./.github/actions/call | |
| with: | |
| site: "docs" | |
| cloudfront-id: ${{ secrets.DOCS_TEST_CLOUDFRONT_ID }} | |
| aws-account-id: ${{ secrets.AWS_ACCOUNT_ID_TEST }} | |
| aws-region: ${{ secrets.AWS_PROD_REGION_TEST }} | |
| dagger-token: ${{ secrets.DAGGER_CLOUD_TOKEN }} | |
| ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
| bucket: "docs-test" |