From: Mike Bayer Date: Mon, 24 Apr 2023 17:33:17 +0000 (-0400) Subject: do commands in run run concurrently (how does cd work then?) X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=93ab59d2ff55d28f0ac4ba5e0edf9da4d0b95d5a;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git do commands in run run concurrently (how does cd work then?) Change-Id: Ida158e1528cc3f2b81611aef50d2c87a85b9a5a3 --- diff --git a/.github/workflows/build-docs.yaml b/.github/workflows/build-docs.yaml index 7fd68544cb..54113a56de 100644 --- a/.github/workflows/build-docs.yaml +++ b/.github/workflows/build-docs.yaml @@ -49,13 +49,16 @@ jobs: run: | cd doc/build/site_output/html tar czf sqlalchemy_site_docs.tgz . - mv sqlalchemy_site_docs.tgz / - name: Create site zipfile artifact run: | cd doc/build/zip_output/html zip -r sqlalchemy_zip_docs.zip * - mv sqlalchemy_zip_docs.zip / + + - name: move files to root + run: | + mv doc/build/site_output/html/sqlalchemy_site_docs.tgz / + mv doc/build/zip_output/html/sqlalchemy_zip_docs.zip / - name: Upload site artifact uses: actions/upload-artifact@v3