-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Custom Logo and Favicon #19
Open
tuetenk0pp
wants to merge
38
commits into
jchue:main
Choose a base branch
from
tuetenk0pp:master
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
b3f6fb8
Add files via upload
tuetenk0pp 9f8dd53
Create generate-favicons.yml
tuetenk0pp 4674bc9
Update generate-favicons.yml
tuetenk0pp 0d76fbd
Add files via upload
tuetenk0pp 4a7df04
Update generate-favicons.yml
tuetenk0pp 2e7d57e
Update generate-favicons.yml
tuetenk0pp 1f5cde5
Update generate-favicons.yml
tuetenk0pp ce9b8a4
Update realfavicongenerator.json
tuetenk0pp 7d3db38
Update generate-favicons.yml
tuetenk0pp f179741
Update generate-favicons.yml
tuetenk0pp 2069d8d
Update generate-favicons.yml
tuetenk0pp 69b4a5f
Update generate-favicons.yml
tuetenk0pp 59ed2fb
generated
invalid-email-address bfc1845
Update generate-favicons.yml
tuetenk0pp 7992d8d
Delete realfavicongenerator.json
tuetenk0pp 6e03189
Update logo.svg
tuetenk0pp f393c25
Update generate-favicons.yml
tuetenk0pp 0f09666
Update generate-favicons.yml
tuetenk0pp d3d2168
Update generate-favicons.yml
tuetenk0pp debd59e
Update generate-favicons.yml
tuetenk0pp fc6c7b0
Update generate-favicons.yml
tuetenk0pp 7821fe9
update favicons
invalid-email-address 18b0998
add workflow badge
tuetenk0pp 7c7b2a7
Merge branch 'jchue:main' into master
tuetenk0pp 65d3114
remove realfavicongenerator functionality
tuetenk0pp 2c1a7bd
png files and new workflow
tuetenk0pp 2173ad5
fix syntax
tuetenk0pp 2f67df7
add instructions on favicon use
tuetenk0pp a6de18c
use apt-get
tuetenk0pp 0b1b5fa
issue maybe related to working directory
tuetenk0pp 3d3e8c5
find error
tuetenk0pp 4a652d3
inkscape version?
tuetenk0pp 7ed5164
older inkscape: other cli
tuetenk0pp cdbd750
fix syntax
tuetenk0pp b360667
fix filenames
tuetenk0pp 9e67418
update favicons
invalid-email-address 9dc89d1
add open-sans
tuetenk0pp 4fa354c
update favicons
invalid-email-address File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,39 @@ | ||
name: Logo and Favicon Generation | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'logo.svg' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
make-favicons: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: install inkscape and open-sans | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install inkscape fonts-open-sans -y | ||
|
||
- name: checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: convert files | ||
run: | | ||
echo 'note inkscape version' | ||
inkscape -V | ||
echo 'commands will only work on inkscape older than 1.0' | ||
echo 'see this stackoverflow post for more info' | ||
echo 'https://stackoverflow.com/a/14174624' | ||
inkscape -z -w 180 -h 180 logo.svg -e assets/apple-touch-icon.png | ||
inkscape -z -w 32 -h 32 logo.svg -e assets/favicon-32.png | ||
inkscape -z -w 192 -h 192 logo.svg -e assets/favicon-192.png | ||
|
||
- name: commit changes | ||
run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git add . | ||
git commit -m "update favicons" | ||
git push |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suppose my editor made changes to the line endings