File tree Expand file tree Collapse file tree 6 files changed +10
-2
lines changed
Expand file tree Collapse file tree 6 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,20 @@ jobs:
2828 contents : read
2929 packages : write
3030
31+ strategy :
32+ matrix :
33+ platform : [linux/amd64, linux/arm64]
34+
3135 steps :
3236 - name : Checkout repository
3337 uses : actions/checkout@v2
3438
3539 - name : Set up QEMU
40+ if : matrix.platform != 'linux/amd64'
3641 uses : docker/setup-qemu-action@v1
3742
3843 - name : Set up Docker Buildx
44+ if : matrix.platform != 'linux/amd64'
3945 uses : docker/setup-buildx-action@v1
4046
4147 # https://github.com/docker/login-action
6066 with :
6167 context : .
6268 file : ./docker/Dockerfile
63- platforms : linux/amd64,linux/arm64
69+ platforms : ${{ matrix.platform }}
6470 push : ${{ github.event_name != 'pull_request' }}
6571 tags : ${{ steps.meta.outputs.tags }}
6672 labels : ${{ steps.meta.outputs.labels }}
Original file line number Diff line number Diff line change @@ -254,3 +254,4 @@ This is primarily built using the following great projects and technologies:
254254- [ TailwindCSS] ( https://tailwindcss.com/ ) - [ MIT License] ( https://github.com/tailwindlabs/tailwindcss/blob/master/LICENSE )
255255- [ Vue.js] ( https://vuejs.org/ ) - [ MIT License] ( https://github.com/vuejs/vue/blob/main/LICENSE )
256256- [ PHPUnit] ( https://phpunit.de/ ) - [ BSD-3-Clause-Like] ( https://github.com/sebastianbergmann/phpunit/blob/main/LICENSE )
257+ - [ Bootstrap Icons] ( https://icons.getbootstrap.com/ ) - [ MIT License] ( https://github.com/twbs/icons/blob/main/LICENSE.md )
Original file line number Diff line number Diff line change 55 <meta name =" viewport" content =" width=device-width, initial-scale=1" >
66
77 <title >{{ config (' app.name' ) } } </title >
8-
98 <base href =" {{ asset (' ' ) } }" >
9+ <link rel =" icon" type =" image/png" sizes =" 32x32" href =" icons/rss-32.png" >
10+ <link rel =" icon" type =" image/png" sizes =" 128x128" href =" icons/rss-128.png" >
1011
1112 @if (! app ()-> runningUnitTests () )
1213 @vite ([' resources/css/app.css' , ' resources/js/app.js' ] )
You can’t perform that action at this time.
0 commit comments