Skip to content

Commit aa1ff9f

Browse files
authored
Fix master disk usage workflow (#23411)
* Fix master disk usage workflow - trigger on all commits to master - upload json artifacts * fix yaml indentation
1 parent c430546 commit aa1ff9f

1 file changed

Lines changed: 14 additions & 2 deletions

File tree

.github/workflows/measure-disk-usage-master.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ on:
1111
push:
1212
branches:
1313
- master
14-
paths:
15-
- .deps/**
1614

1715
env:
1816
PYTHON_VERSION: "3.13"
@@ -58,3 +56,17 @@ jobs:
5856
env:
5957
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6058
run: ddev -v size status --commit "${{ github.sha }}" --format json --to-dd-key ${{ steps.dd-sts.outputs.api_key }} --compressed
59+
60+
- name: Upload JSON uncompressed sizes artifact
61+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
62+
with:
63+
name: status_uncompressed.json
64+
path: status_uncompressed.json
65+
if-no-files-found: error
66+
67+
- name: Upload JSON compressed sizes artifact
68+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
69+
with:
70+
name: status_compressed.json
71+
path: status_compressed.json
72+
if-no-files-found: error

0 commit comments

Comments
 (0)