This is an automated email from the ASF dual-hosted git repository.
ppalaga pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/master by this push:
new 8021c93 Display free disk space after archiving local Maven repo in
quarkus-master
8021c93 is described below
commit 8021c933b307d12923060131c872df50b7c7888b
Author: Peter Palaga <[email protected]>
AuthorDate: Tue May 5 22:23:50 2020 +0200
Display free disk space after archiving local Maven repo in quarkus-master
---
.github/workflows/quarkus-master-cron.yaml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/quarkus-master-cron.yaml
b/.github/workflows/quarkus-master-cron.yaml
index 8afdfdc..591fd4c 100644
--- a/.github/workflows/quarkus-master-cron.yaml
+++ b/.github/workflows/quarkus-master-cron.yaml
@@ -76,7 +76,10 @@ jobs:
./mvnw -B -ntp clean install -Dquarkus.version=999-SNAPSHOT -pl
'!docs'
- name: Tar Maven Repo
shell: bash
- run: tar -czvf maven-repo.tgz -C ~ build-data .m2/repository
+ run: |
+ tar -czvf maven-repo.tgz -C ~ build-data .m2/repository
+ ls -lh maven-repo.tgz
+ df -h
- name: Persist Maven Repo
uses: actions/upload-artifact@v1
with: