Skip to content

Commit

Permalink
ci: fix build and release
Browse files Browse the repository at this point in the history
  • Loading branch information
rtgiskard committed Jan 28, 2025
1 parent 16fdf15 commit f4ccfe8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ jobs:
- name: Build hyprcursor
run: |
uv run ./cursor_utils.py --hypr --log-level debug --out-dir out.hypr
cd out.hypr && for x in *; do \
uv run ./src/cursor_utils.py --hypr --log-level debug --out-dir out.hypr
cd out.hypr && for x in Bibata-*; do \
tar -acf ../"${x}.hypr.tar.zst" "$x"; \
done
- name: Build Xcursor
run: |
uv run ./cursor_utils.py --x11 --log-level debug --out-dir out.x11
cd out.x11 && for x in *; do \
uv run ./src/cursor_utils.py --x11 --log-level debug --out-dir out.x11
cd out.x11 && for x in Bibata-*; do \
tar -acf ../"${x}.x11.tar.zst" "$x"; \
done
Expand Down

0 comments on commit f4ccfe8

Please sign in to comment.