diff --git a/.github/workflows/build-alpha.yml b/.github/workflows/build-alpha.yml index 81ad5024..e659f702 100644 --- a/.github/workflows/build-alpha.yml +++ b/.github/workflows/build-alpha.yml @@ -51,4 +51,4 @@ jobs: aws-region: ${{secrets.AWS_REGION}} role-to-assume: ${{ secrets.AWS_OIDC_RUNNER_ROLE }} - name: Sync to S3 - run: aws s3 sync --quiet ./examples/build/ s3://pyscript-static/alpha/ + run: aws s3 sync --quiet ./examples/build/ s3://pyscript.net/alpha/ diff --git a/.github/workflows/build-latest.yml b/.github/workflows/build-latest.yml index 7bbaf15e..6b546974 100644 --- a/.github/workflows/build-latest.yml +++ b/.github/workflows/build-latest.yml @@ -60,4 +60,4 @@ jobs: role-to-assume: ${{ secrets.AWS_OIDC_RUNNER_ROLE }} - name: Sync to S3 if: github.ref == 'refs/heads/main' - run: aws s3 sync --quiet ./examples/build/ s3://pyscript-static/unstable + run: aws s3 sync --quiet ./examples/build/ s3://pyscript.net/unstable diff --git a/.github/workflows/sync-examples.yml b/.github/workflows/sync-examples.yml index a9619b63..07a8c9a2 100644 --- a/.github/workflows/sync-examples.yml +++ b/.github/workflows/sync-examples.yml @@ -30,4 +30,4 @@ jobs: role-to-assume: ${{ secrets.AWS_OIDC_RUNNER_ROLE }} - name: Sync to S3 # Sync outdated or new files, delete ones no longer in source - run: aws s3 sync --quiet --delete . s3://pyscript-static/examples/ # Sync directory, delete what is not in source + run: aws s3 sync --quiet --delete . s3://pyscript.net/examples/ # Sync directory, delete what is not in source