Skip to content

Commit f910147

Browse files
authored
feat: upd workflow for GHA automation
- [x] add names - [x] add Generate Output step - [x] add Commit the changes, if any
1 parent c731f0b commit f910147

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.github/workflows/RunAndCompress.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ on:
1010

1111
jobs:
1212
run-compress:
13+
name: Run and Compress
1314
runs-on: ubuntu-latest
1415

1516
steps:
16-
- uses: actions/checkout@v4
17+
- name: Checkout
18+
uses: actions/checkout@v4
1719

1820
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
1921
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
@@ -24,10 +26,12 @@ jobs:
2426
run: gradle run
2527

2628
- name: Give Brotli version
27-
run: |
28-
brotli -V
29+
run: brotli -V
2930

30-
- name: TBC...
31-
run: |
32-
echo "TBC"
31+
- name: Generate Output
32+
run: perl script/generateOutput.pl
3333

34+
- name: Commit the changes, if any
35+
uses: stefanzweifel/git-auto-commit-action@v5
36+
with:
37+
commit_message: Auto-generated (update output with latest stdlib)

0 commit comments

Comments
 (0)