Skip to content
This repository has been archived by the owner on Jun 2, 2024. It is now read-only.

Commit

Permalink
ci: organise logs
Browse files Browse the repository at this point in the history
  • Loading branch information
nullishamy committed May 25, 2024
1 parent aea517c commit 658b4c2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,16 @@ jobs:
run: |
python patches/xfwm4/generate_assets.py
python ./build.py mocha --all-accents --zip -d $PWD/releases &
python ./build.py macchiato --all-accents --zip -d $PWD/releases &
python ./build.py frappe --all-accents --zip -d $PWD/releases &
python ./build.py latte --all-accents --zip -d $PWD/releases &
python ./build.py mocha --all-accents --zip -d $PWD/releases > mocha.log &
python ./build.py macchiato --all-accents --zip -d $PWD/releases > macchiato.log &
python ./build.py frappe --all-accents --zip -d $PWD/releases > frappe.log &
python ./build.py latte --all-accents --zip -d $PWD/releases > latte.log &
wait
cat *.log
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: '${{ github.sha }}-artifacts'
path: ./releases/*.zip
path: ./releases/*.zip
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,14 @@ jobs:
run: |
python patches/xfwm4/generate_assets.py
python ./build.py mocha --all-accents --zip -d $PWD/releases &
python ./build.py macchiato --all-accents --zip -d $PWD/releases &
python ./build.py frappe --all-accents --zip -d $PWD/releases &
python ./build.py latte --all-accents --zip -d $PWD/releases &
python ./build.py mocha --all-accents --zip -d $PWD/releases > mocha.log &
python ./build.py macchiato --all-accents --zip -d $PWD/releases > macchiato.log &
python ./build.py frappe --all-accents --zip -d $PWD/releases > frappe.log &
python ./build.py latte --all-accents --zip -d $PWD/releases > latte.log &
wait
cat *.log
- name: Add zips to release
uses: softprops/action-gh-release@v2
with:
Expand Down

0 comments on commit 658b4c2

Please sign in to comment.