kaxil commented on code in PR #1055:
URL: https://github.com/apache/airflow-site/pull/1055#discussion_r1719148472
##########
.github/workflows/build.yml:
##########
@@ -47,8 +47,18 @@ jobs:
submodules: recursive
lfs: true
fetch-depth: 1
+ - name: Create /mnt/airflow-site directory
+ run: sudo mkdir -p /mnt/airflow-site
+ - name: Move repository to /mnt
+ run: |
+ sudo mv /home/runner/work/airflow-site/airflow-site /mnt/airflow-site
+ - name: Set working directory to /mnt/airflow-site
+ working-directory: /mnt/airflow-site
+ run: echo "Working directory set to /mnt/airflow-site"
+
- name: Display disk free
- run: ./.github/scripts/print_df.sh
+ run: /mnt/airflow-site/.github/scripts/print_df.sh
Review Comment:
```suggestion
run: /mnt/airflow-site/.github/scripts/print_df.sh
working-directory: /mnt/airflow-site
```
##########
.github/workflows/build.yml:
##########
@@ -47,8 +47,18 @@ jobs:
submodules: recursive
lfs: true
fetch-depth: 1
+ - name: Create /mnt/airflow-site directory
+ run: sudo mkdir -p /mnt/airflow-site
+ - name: Move repository to /mnt
+ run: |
+ sudo mv /home/runner/work/airflow-site/airflow-site /mnt/airflow-site
+ - name: Set working directory to /mnt/airflow-site
+ working-directory: /mnt/airflow-site
+ run: echo "Working directory set to /mnt/airflow-site"
+
- name: Display disk free
- run: ./.github/scripts/print_df.sh
+ run: /mnt/airflow-site/.github/scripts/print_df.sh
+
- name: 🐍 Setup Python
uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0 #
v4.6.1
Review Comment:
```suggestion
uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0
# v4.6.1
working-directory: /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]