Some checks failed
Build and Push Docker Images / build-and-push (push) Failing after 1s
The mac-mini runner runs jobs in host mode with no Node, so JS actions like actions/checkout fail with 'Cannot find: node in PATH'. Replace it with a plain git init/fetch/checkout so the workflow needs only git + docker, both present on the host. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
38 lines
1.6 KiB
YAML
38 lines
1.6 KiB
YAML
name: Build and Push Docker Images
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
build-and-push:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Manual checkout with plain git — the runner has no Node, so JS actions
|
|
# like actions/checkout can't run. git + docker are available on the host.
|
|
- name: Checkout
|
|
run: |
|
|
git init -q .
|
|
git remote add origin "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@git.plexultra.com/${{ github.repository }}.git" \
|
|
|| git remote set-url origin "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@git.plexultra.com/${{ github.repository }}.git"
|
|
git fetch --depth 1 origin "${{ github.ref_name }}"
|
|
git checkout -q -f FETCH_HEAD
|
|
|
|
- name: Log in to Forgejo container registry
|
|
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login git.plexultra.com -u "${{ github.actor }}" --password-stdin
|
|
|
|
# Runner is on the arm64 Mac Mini, so a plain build produces a native
|
|
# arm64 image (matches the deploy host) with no QEMU.
|
|
- name: Build and push API image
|
|
run: |
|
|
IMAGE=git.plexultra.com/${{ github.repository }}
|
|
docker build --target production -t "$IMAGE:main" -t "$IMAGE:${{ github.sha }}" .
|
|
docker push "$IMAGE:main"
|
|
docker push "$IMAGE:${{ github.sha }}"
|
|
|
|
- name: Build and push Nginx image
|
|
run: |
|
|
IMAGE=git.plexultra.com/${{ github.repository }}-nginx
|
|
docker build --target nginx-frontend -t "$IMAGE:main" -t "$IMAGE:${{ github.sha }}" .
|
|
docker push "$IMAGE:main"
|
|
docker push "$IMAGE:${{ github.sha }}"
|