kaxil commented on code in PR #1055:
URL: https://github.com/apache/airflow-site/pull/1055#discussion_r1719149677
##########
.github/workflows/build.yml:
##########
@@ -47,10 +47,22 @@ 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
+ working-directory: /mnt/airflow-site
+
- name: 🐍 Setup Python
uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0 #
v4.6.1
+ working-directory: /mnt/airflow-site
Review Comment:
```suggestion
```
--
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]