Compare commits
1 Commits
fix/docker
...
release/v1
| Author | SHA1 | Date | |
|---|---|---|---|
| 89326889e4 |
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
@ -135,7 +135,6 @@ jobs:
|
|||||||
needs: [rust-format, clippy, rust-test, security-audit, frontend-lint]
|
needs: [rust-format, clippy, rust-test, security-audit, frontend-lint]
|
||||||
if: startsWith(github.ref, 'refs/tags/v')
|
if: startsWith(github.ref, 'refs/tags/v')
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 60
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
@ -167,7 +166,7 @@ jobs:
|
|||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
platforms: linux/amd64
|
platforms: linux/amd64,linux/arm64
|
||||||
push: true
|
push: true
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
|||||||
@ -86,7 +86,7 @@ export default function AppLayout() {
|
|||||||
|
|
||||||
const drawer = (
|
const drawer = (
|
||||||
<Box sx={{ height: '100%', display: 'flex', flexDirection: 'column' }}>
|
<Box sx={{ height: '100%', display: 'flex', flexDirection: 'column' }}>
|
||||||
<Toolbar sx={{ justifyContent: 'center', py: 1.5 }}>
|
<Toolbar sx={{ justifyContent: 'center', py: 1.5, flexDirection: 'column' }}>
|
||||||
<Typography variant="h6" fontWeight={700} sx={{
|
<Typography variant="h6" fontWeight={700} sx={{
|
||||||
background: 'linear-gradient(135deg, #42A5F5 30%, #26C6DA 100%)',
|
background: 'linear-gradient(135deg, #42A5F5 30%, #26C6DA 100%)',
|
||||||
WebkitBackgroundClip: 'text',
|
WebkitBackgroundClip: 'text',
|
||||||
@ -94,6 +94,9 @@ export default function AppLayout() {
|
|||||||
}}>
|
}}>
|
||||||
🐉 Patch Manager
|
🐉 Patch Manager
|
||||||
</Typography>
|
</Typography>
|
||||||
|
<Typography variant="caption" sx={{ color: 'text.secondary', opacity: 0.7, mt: -0.5 }}>
|
||||||
|
v{__APP_VERSION__}
|
||||||
|
</Typography>
|
||||||
</Toolbar>
|
</Toolbar>
|
||||||
<Divider />
|
<Divider />
|
||||||
<Box sx={{ flex: 1, overflowY: 'auto', py: 1 }}>
|
<Box sx={{ flex: 1, overflowY: 'auto', py: 1 }}>
|
||||||
|
|||||||
Reference in New Issue
Block a user