Skip to content

Commit

Permalink
Add GHA workflow to test GHA action changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Mandrenkov committed Oct 3, 2024
1 parent 3d2cba8 commit 4da5c24
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build-text-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# TODO: Delete this workflow.
name: Build Website - Text (Test)
on:
push:
branches:
- sc-72674-add-slug-field-to-metadata

jobs:
build:
uses: ./.github/workflows/build-branch.yml
with:
branch: ${{ github.ref }}
num_workers: 1
enable_python_cache: false
enable_sphinx_cache: true
enable_qml_execution_times_cache: false
skip_execution_of_examples: true
skip_execution_times_aggregation: true
skip_sphinx_build_file_aggregation: false
sphinx_build_output_format: text

upload-dev:
needs:
- build
uses: ./.github/workflows/upload-text.yml
with:
branch: ${{ github.ref }}

secrets:
aws_region: ${{ secrets.AWS_REGION }}
aws_access_key_id: ${{ secrets.DEV_GLASS_ONION_AWS_ACCESS_KEY_ID }}
aws_secret_access_key: ${{ secrets.DEV_GLASS_ONION_AWS_SECRET_ACCESS_KEY }}
aws_text_s3_bucket_id: ${{ secrets.DEV_GLASS_ONION_DEMOS_BUCKET_ID }}

0 comments on commit 4da5c24

Please sign in to comment.