Parcourir la source

Fix website dir move from merge (#204)

Jon Meow il y a 5 ans
Parent
commit
58554b87ae
1 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 4 4
      .github/workflows/publish-docs.yaml

+ 4 - 4
.github/workflows/publish-docs.yaml

@@ -28,12 +28,12 @@ jobs:
       - run: gcloud info
       - run: gcloud info
       - name: Install bundler
       - name: Install bundler
         run: gem install bundler
         run: gem install bundler
-        working-directory: src/jekyll
+        working-directory: website/jekyll
       - name: Install jekyll and dependencies
       - name: Install jekyll and dependencies
         run: bundle install --jobs 4 --retry 3
         run: bundle install --jobs 4 --retry 3
-        working-directory: src/jekyll
+        working-directory: website/jekyll
       - name: Build HTML pages
       - name: Build HTML pages
         run: make build
         run: make build
-        working-directory: src/jekyll
+        working-directory: website/jekyll
       - name: Publish to www.carbon-lang.dev
       - name: Publish to www.carbon-lang.dev
-        run: gsutil cp -R src/jekyll/.gen-site/* gs://www.carbon-lang.dev/
+        run: gsutil cp -R website/jekyll/.gen-site/* gs://www.carbon-lang.dev/