Skip to content

Commit

Permalink
refactor: improve packaging
Browse files Browse the repository at this point in the history
Signed-off-by: Sefa Eyeoglu <[email protected]>
  • Loading branch information
Scrumplex committed Mar 22, 2024
1 parent 7f9b1f4 commit 49c7243
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
- name: Package
run: |
parallel "zip -r {}.zip {}/" ::: {themes,icons}/*
mkdir -p out
parallel "zip -r out/{/}-theme.zip {}/" ::: themes/*
parallel "zip -r out/{/}-icons.zip {}/" ::: icons/*
echo "DISPLAY_NAME=$(date "+%Y-%m-%d %H:%M:%S")" >> "$GITHUB_ENV"
echo "TAG_NAME=$(date "+%Y-%m-%d_%s")" >> "$GITHUB_ENV"
Expand All @@ -40,6 +42,4 @@ jobs:
draft: false
prerelease: false
files: |
themes/*.zip
icons/*.zip
out/*.zip
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<!--
SPDX-FileCopyrightText: 2024 Sefa Eyeoglu <[email protected]>

SPDX-License-Identifier: CC0-1.0
-
->
out/

0 comments on commit 49c7243

Please sign in to comment.