mirror of
https://git.v0l.io/Kieran/void.cat.git
synced 2025-09-26 10:16:37 +02:00
build arm64 (slow :()
This commit is contained in:
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -17,4 +17,4 @@ jobs:
|
||||
- uses: docker/setup-qemu-action@v1
|
||||
- uses: docker/setup-buildx-action@v1
|
||||
- name: Build the Docker image
|
||||
run: docker buildx build -t ghcr.io/v0l/void.cat/app:latest --platform linux/amd64 --push .
|
||||
run: docker buildx build -t ghcr.io/v0l/void.cat/app:latest --platform linux/amd64,linux/arm64 --push .
|
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,6 +1,7 @@
|
||||
.vs/
|
||||
bin/
|
||||
obj/
|
||||
data/
|
||||
*.csproj.user
|
||||
*.vcxproj.user
|
||||
*.min.*
|
||||
|
3
VoidCat/spa/src/FilePreview.css
Normal file
3
VoidCat/spa/src/FilePreview.css
Normal file
@@ -0,0 +1,3 @@
|
||||
.preview {
|
||||
text-align: center;
|
||||
}
|
@@ -16,7 +16,7 @@ export function FilePreview(props) {
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<div>
|
||||
<div className={"preview"}>
|
||||
{info ? <a href={`/d/${info.id}`}>{info.metadata?.name ?? info.id}</a> : "Not Found"}
|
||||
</div>
|
||||
);
|
||||
|
Reference in New Issue
Block a user