From 257eb13e29dd06e3d89f6d65805830a0a4112bd6 Mon Sep 17 00:00:00 2001 From: Sam Tobin-Hochstadt Date: Tue, 2 Jun 2020 12:04:41 -0400 Subject: [PATCH] use new bucket for ci snapshots --- .github/workflows/ci-snapshot.yml | 2 +- .github/workflows/site-small.rkt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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"))