Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 93ab59d

Browse files
committed
do commands in run run concurrently (how does cd work then?)
Change-Id: Ida158e1528cc3f2b81611aef50d2c87a85b9a5a3
1 parent 817ad37 commit 93ab59d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build-docs.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,16 @@ jobs:
4949
run: |
5050
cd doc/build/site_output/html
5151
tar czf sqlalchemy_site_docs.tgz .
52-
mv sqlalchemy_site_docs.tgz /
5352
5453
- name: Create site zipfile artifact
5554
run: |
5655
cd doc/build/zip_output/html
5756
zip -r sqlalchemy_zip_docs.zip *
58-
mv sqlalchemy_zip_docs.zip /
57+
58+
- name: move files to root
59+
run: |
60+
mv doc/build/site_output/html/sqlalchemy_site_docs.tgz /
61+
mv doc/build/zip_output/html/sqlalchemy_zip_docs.zip /
5962
6063
- name: Upload site artifact
6164
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)