Fix arch
Some checks failed
/ deploy (push) Successful in 31s
/ publish (push) Failing after 8s

This commit is contained in:
Aleks Rutins 2025-06-11 18:06:42 -04:00
parent 11fc5d1a75
commit 13516439e6
Signed by: asr
SSH key fingerprint: SHA256:DBype7RrB3qCdOLdkvecD2Y3THOYgYOVw6jAHVgsGRQ
2 changed files with 2 additions and 2 deletions

View file

@ -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}}'

View file

@ -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