kaxil commented on code in PR #1055:
URL: https://github.com/apache/airflow-site/pull/1055#discussion_r1719136675
##########
.github/workflows/build.yml:
##########
@@ -47,8 +47,14 @@ jobs:
submodules: recursive
lfs: true
fetch-depth: 1
+ - name: Create /mnt/airflow-site directory
+ run: mkdir -p /mnt/airflow-site
Review Comment:
```suggestion
run: sudo mkdir -p /mnt/airflow-site
```
##########
.github/workflows/build.yml:
##########
@@ -47,8 +47,14 @@ jobs:
submodules: recursive
lfs: true
fetch-depth: 1
+ - name: Create /mnt/airflow-site directory
+ run: mkdir -p /mnt/airflow-site
+ - name: Move repository to /mnt
+ run: |
+ mv /home/runner/work/airflow-site/airflow-site /mnt/airflow-site
Review Comment:
```suggestion
sudo mv /home/runner/work/airflow-site/airflow-site
/mnt/airflow-site
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]