From 13516439e681a06e35c28298fd466afeab17c5ba Mon Sep 17 00:00:00 2001 From: Aleks Rutins Date: Wed, 11 Jun 2025 18:06:42 -0400 Subject: [PATCH] Fix arch --- .forgejo/workflows/publish.yml | 2 +- Containerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/publish.yml b/.forgejo/workflows/publish.yml index 40ce86f..e56ebf7 100644 --- a/.forgejo/workflows/publish.yml +++ b/.forgejo/workflows/publish.yml @@ -6,5 +6,5 @@ jobs: steps: - uses: actions/checkout@v4 - run: podman manifest create -a git.farthergate.com/asr/farthergate.com:latest - - run: podman build --platform linux/amd64,linux/arm64 --manifest git.farthergate.com/asr/farthergate.com:latest . + - run: podman build --platform linux/amd64 --manifest git.farthergate.com/asr/farthergate.com:latest . - run: podman manifest push git.farthergate.com/asr/farthergate.com:latest --creds=asr:'${{secrets.PACKAGES_SECRET}}' diff --git a/Containerfile b/Containerfile index 83fcf53..34ae1a8 100644 --- a/Containerfile +++ b/Containerfile @@ -1,7 +1,7 @@ FROM git.farthergate.com/asr/phlexite AS build RUN mkdir -p /usr/local/bin -RUN wget -O /usr/local/bin/tailwindcss https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-macos-arm64 +RUN wget -O /usr/local/bin/tailwindcss https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-linux-amd64 RUN chmod +x /usr/local/bin/tailwindcss ENV TAILWINDCSS_INSTALL_DIR=/usr/local/bin