-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed theme table + archive format changes (#10)
* Theme Library Generate fix * Update release.yml * Rename generate_theme_library to generate_theme_library.yml * Action with generated files * Update readmetemplate.md * Update themepagetemplate.md * Update themepagetemplate.md * Action with generated files
- Loading branch information
1 parent
d2a6ceb
commit d0e7020
Showing
6 changed files
with
244 additions
and
267 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,15 +21,16 @@ jobs: | |
# Create theme archives here! Zipping everything together and creating a complete theme archive. | ||
- name: Zip directories | ||
run: | | ||
mkdir -p /tmp/release/run/muos/storage/theme && for dir in */; do dir_name="${dir%/}"; (cd "$dir_name" && zip -qq -r "/tmp/release/run/muos/storage/theme/${dir_name}.zip" *); done | ||
mkdir -p /tmp/release/run/muos/storage/theme && for dir in */; do dir_name="${dir%/}"; (cd "$dir_name" && zip -qq -r "/tmp/release/${dir_name}.zip" *); done | ||
- name: Copy zips to complete archive zip format | ||
run: | | ||
cp -a /tmp/release/*.zip /tmp/release/run/muos/storage/theme/ | ||
# Create the archive! | ||
- name: Zip mnt folder | ||
- name: Zip complete folder | ||
run: | | ||
(cd /tmp/release && zip -r @_Complete_Theme_Archive.zip run) | ||
- name: Create individual archive managers | ||
run: | | ||
for dir in */; do dir_name="${dir%/}"; (cd /tmp/release && zip -r "${dir_name}.zip" . -i "/run/muos/storage/theme/${dir_name}.zip"); done | ||
- name: List archives | ||
run: | | ||
|
@@ -57,7 +58,7 @@ jobs: | |
- name: Prepare Release | ||
uses: ncipollo/[email protected] | ||
with: | ||
name: "All Themes - Archive Manager" | ||
name: "All Themes" | ||
tag: "${{steps.date.outputs.date}}" | ||
allowUpdates: true | ||
draft: true | ||
|
@@ -70,7 +71,7 @@ jobs: | |
- name: Publish Release | ||
uses: ncipollo/[email protected] | ||
with: | ||
name: "All Themes - Archive Manager" | ||
name: "All Themes" | ||
tag: "${{steps.date.outputs.date}}" | ||
omitBodyDuringUpdate: true | ||
omitNameDuringUpdate: true | ||
|
Oops, something went wrong.