diff --git a/.github/workflows/ci-snapshot.yml b/.github/workflows/ci-snapshot.yml index 6e40d07e53..39aa806175 100644 --- a/.github/workflows/ci-snapshot.yml +++ b/.github/workflows/ci-snapshot.yml @@ -48,4 +48,4 @@ jobs: AWS_SECRET_ACCESS_KEY: ${{ secrets.AWSSecretKey }} run: | ls -l ${{ runner.temp }}/site-dest/ci-snapshots/ - raco s3-sync --acl public-read --web --redirect-links ${{ runner.temp }}/site-dest/ci-snapshots/ s3://snapshot.racket-lang.org/ci-snapshots/ + raco s3-sync --acl public-read --web --redirect-links ${{ runner.temp }}/site-dest/ci-snapshots/ s3://ci-snapshot.racket-lang.org/ diff --git a/.github/workflows/site-small.rkt b/.github/workflows/site-small.rkt index 22a84c40c5..0f03c6b367 100644 --- a/.github/workflows/site-small.rkt +++ b/.github/workflows/site-small.rkt @@ -12,9 +12,9 @@ (define (dest-dir-name) (case (current-mode) [("release") "ci-release"] - [else (~a "ci-snapshots/" (current-stamp))])) + [else (~a (current-stamp))])) -(define server-base-url (~a "https://snapshots.racket-lang.org/" (dest-dir-name) "/")) +(define server-base-url (~a "https://ci-snapshot.racket-lang.org/" (dest-dir-name) "/")) (define distro-content '("main-distribution"))