The runner (gitea-anouma-runner) runs as a Docker container itself (gitea/runner:3) with the host's docker.sock mounted in, but no `docker` CLI binary. A job with no `container:` runs directly inside that minimal runner image, so `docker login/build/push` failed with "docker: command not found". Using docker:27-cli gives the job the CLI; the runner mounts the same host socket into it automatically (sibling containers), and openssh-client is installed for the deploy step's ssh call. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
116 lines
4.5 KiB
YAML
116 lines
4.5 KiB
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: node:22-alpine
|
|
# NODE_ENV is deliberately NOT set at job level: `npm ci` treats a
|
|
# production NODE_ENV as `--omit=dev`, which would skip eslint/
|
|
# typescript/etc. and break Lint/Typecheck/Test. It's scoped to the
|
|
# Build step below instead.
|
|
env:
|
|
NEXT_TELEMETRY_DISABLED: "1"
|
|
DATABASE_URI: postgresql://ci:ci@localhost:5432/ci
|
|
PAYLOAD_SECRET: ci-only-not-a-real-secret
|
|
MEETING_SESSION_SECRET: ci-only-not-a-real-secret
|
|
CRON_SECRET: ci-only-not-a-real-secret
|
|
NEXT_PUBLIC_SERVER_URL: http://localhost:3000
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: apk add --no-cache libc6-compat
|
|
- run: npm ci
|
|
- run: npm run lint
|
|
- run: npx next typegen && npx tsc --noEmit
|
|
- run: npm test
|
|
- run: npm run build
|
|
env:
|
|
NODE_ENV: production
|
|
|
|
build-and-deploy:
|
|
needs: test
|
|
runs-on: ubuntu-latest
|
|
# The anouma-runner runs as a Docker container itself (gitea/runner:3),
|
|
# with the host's docker.sock bind-mounted in but no `docker` CLI binary
|
|
# of its own — a job with no `container:` here runs directly inside that
|
|
# minimal runner image and gets "docker: command not found". Using the
|
|
# official Docker CLI image instead gives this job the `docker` binary,
|
|
# and the runner auto-mounts the same host docker.sock into it (sibling
|
|
# containers — see container.docker_host in the runner's config.yaml),
|
|
# so `docker build`/`push` operate on the host's real Docker daemon.
|
|
container:
|
|
image: docker:27-cli
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install ssh client
|
|
run: apk add --no-cache openssh-client
|
|
|
|
- name: Determine image tags
|
|
id: image
|
|
# Gitea Actions' runner is protocol-compatible with GitHub Actions,
|
|
# so step commands use the same $GITHUB_OUTPUT / $GITHUB_ENV
|
|
# mechanism (the `gitea.*` vs `github.*` expression contexts are
|
|
# just aliases of each other for `${{ }}` templating).
|
|
run: |
|
|
echo "registry=${REGISTRY:-git.maro.run}" >> "$GITHUB_OUTPUT"
|
|
echo "repo=${REGISTRY_REPO:-maro/anouma}" >> "$GITHUB_OUTPUT"
|
|
echo "version=${{ github.ref_name }}" >> "$GITHUB_OUTPUT"
|
|
env:
|
|
REGISTRY: git.maro.run
|
|
REGISTRY_REPO: maro/anouma
|
|
|
|
- name: Log in to registry
|
|
run: echo "${{ secrets.REGISTRY_PASSWORD }}" | docker login "${{ steps.image.outputs.registry }}" -u "${{ secrets.REGISTRY_USERNAME }}" --password-stdin
|
|
|
|
- name: Build image
|
|
run: |
|
|
IMAGE="${{ steps.image.outputs.registry }}/${{ steps.image.outputs.repo }}"
|
|
VERSION="${{ steps.image.outputs.version }}"
|
|
docker build -t "$IMAGE:$VERSION" -t "$IMAGE:latest" .
|
|
|
|
- name: Push image
|
|
run: |
|
|
IMAGE="${{ steps.image.outputs.registry }}/${{ steps.image.outputs.repo }}"
|
|
VERSION="${{ steps.image.outputs.version }}"
|
|
docker push "$IMAGE:$VERSION"
|
|
docker push "$IMAGE:latest"
|
|
|
|
- name: Deploy to production
|
|
env:
|
|
DEPLOY_HOST: ${{ secrets.DEPLOY_HOST }}
|
|
DEPLOY_PORT: ${{ secrets.DEPLOY_PORT }}
|
|
DEPLOY_USER: ${{ secrets.DEPLOY_USER }}
|
|
DEPLOY_SSH_KEY: ${{ secrets.DEPLOY_SSH_KEY }}
|
|
# Optional: pin the exact host key instead of trusting it on
|
|
# first connect (see DEPLOYMENT.md). Safe to leave unset.
|
|
DEPLOY_HOST_KEY: ${{ secrets.DEPLOY_HOST_KEY }}
|
|
VERSION: ${{ steps.image.outputs.version }}
|
|
run: |
|
|
set -euo pipefail
|
|
umask 077
|
|
key_file="$(mktemp)"
|
|
known_hosts_file="$(mktemp)"
|
|
trap 'rm -f "$key_file" "$known_hosts_file"' EXIT
|
|
|
|
printf '%s\n' "$DEPLOY_SSH_KEY" > "$key_file"
|
|
chmod 600 "$key_file"
|
|
|
|
if [ -n "${DEPLOY_HOST_KEY:-}" ]; then
|
|
printf '%s\n' "$DEPLOY_HOST_KEY" > "$known_hosts_file"
|
|
else
|
|
ssh-keyscan -p "${DEPLOY_PORT:-22}" "$DEPLOY_HOST" > "$known_hosts_file" 2>/dev/null
|
|
fi
|
|
|
|
# The forced command in the server's authorized_keys (see
|
|
# setup.sh) ignores this and always runs deploy.sh itself — the
|
|
# string below only ever reaches it via $SSH_ORIGINAL_COMMAND.
|
|
ssh -i "$key_file" -o UserKnownHostsFile="$known_hosts_file" -p "${DEPLOY_PORT:-22}" \
|
|
"${DEPLOY_USER}@${DEPLOY_HOST}" "deploy ${VERSION}"
|