-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4703af1
commit bef4e04
Showing
18 changed files
with
976 additions
and
870 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Clean Workflow Logs | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
days_old: | ||
description: "The amount of days old to delete" | ||
default: "3" | ||
required: false | ||
|
||
jobs: | ||
clean-logs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: igorjs/gh-actions-clean-workflow@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
owner: ${{ github.repository_owner }} | ||
repo: ${{ github.event.repository.name }} | ||
days_old: ${{ github.event.inputs.days_old }} |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
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 |
---|---|---|
@@ -1,13 +1,5 @@ | ||
If you want customize **/setup** webpage (headers, logo etc etc): | ||
* edit the source files as your needs (setup.htm, app.js, style.css) | ||
* open a terminal in ***build_setup*** folder and run `npm i` to install all nodejs modules needed | ||
* run `node minify.js` | ||
* overwrite the content of `setup_htm.h` inside `/src` folder with the new generated file | ||
|
||
|
||
# | ||
As alternative on Windows system, is possible to use the tool [SEGGER Bin2C](https://www.segger.com/free-utilities/bin2c/). | ||
|
||
`all.htm.gz` file need to be prepared manually (for example you could use online tools for minify CSS, JavaScript and HTML) | ||
|
||
This Bin2C program will create a file named `all.htm.c`, simply copy & past the content and overwrite `setup_htm.h` file | ||
* open a terminal in *build* folder and run `npm i` to install all nodejs modules needed | ||
* run `node minimize.js` | ||
* overwrite the content of *setup_htm.h* in src folder with the new generated file |
Oops, something went wrong.