File tree Expand file tree Collapse file tree 3 files changed +25
-2
lines changed
Expand file tree Collapse file tree 3 files changed +25
-2
lines changed Original file line number Diff line number Diff line change 1+ name : Publish to Github Pages
2+ run-name : ${{github.actor}} is deploying to Github Pages
3+ on :
4+ push :
5+ branches :
6+ - main
7+ permissions :
8+ contents : write
9+ jobs :
10+ build-and-deploy :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Checkout
14+ uses : actions/checkout@v4
15+ - name : Install and Build
16+ run : |
17+ yarn
18+ yarn run predeploy
19+ - name : Deploy 🚀
20+ uses : JamesIves/github-pages-deploy-action@v4
21+ with :
22+ folder : build
23+ repository_name : https://github.com/CodeforLeipzig/leipzigmaps.git
Original file line number Diff line number Diff line change 44/node_modules
55/.pnp
66.pnp.js
7-
7+ .idea
88# testing
99/coverage
1010
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import { colors } from './MarkerToggles';
1212const OwnLocationMarker = ( ) => {
1313 var myIcon = L . divIcon ( {
1414 className : 'ownLocationMarker' ,
15- iconSize : [ 20 , 20 ] ,
15+ iconSize : [ 30 , 20 ] ,
1616 html : renderToString (
1717 < div >
1818 < FontAwesomeIcon
You can’t perform that action at this time.
0 commit comments