Compare commits

..

1 commit

Author SHA1 Message Date
050706674a Add a docker build step.
Some checks failed
Docker Build / Build and Push Backend Image (push) Failing after 0s
Docker Build / Build and Push Frontend Image (push) Failing after 0s
Check / Backend (pull_request) Successful in 6m14s
Check / Frontend (pull_request) Successful in 2m5s
2025-09-28 20:51:17 -07:00

View file

@ -4,77 +4,83 @@ on:
push: push:
branches: [ main, docker ] branches: [ main, docker ]
env:
# Should speed up builds.
CARGO_INCREMENTAL: 0
# Should reduce the size of ./target to improve cache load/store.
CARGO_PROFILE_TEST_DEBUG: 0
jobs: jobs:
docker-backend: docker-backend:
name: Build and Push Backend Image name: Build and Push Backend Image
runs-on: docker runs-on: docker
steps: steps:
- name: Checkout Repo - name: Checkout Repo
uses: actions/checkout@v4 uses: https://github.com/actions/checkout@v4
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: https://github.com/docker/setup-buildx-action@v3
- name: Login to Forgejo Container Registry - name: Login to Forgejo Container Registry
uses: docker/login-action@v3 uses: https://github.com/docker/login-action@v3
with: with:
registry: ${{ forgejo.server_url }} registry: ${{ gitea.server_url }}
username: ${{ forgejo.actor }} username: ${{ gitea.actor }}
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata - name: Extract metadata
id: meta id: meta
uses: docker/metadata-action@v5 uses: https://github.com/docker/metadata-action@v5
with: with:
images: ${{ forgejo.server_url }}/${{ forgejo.repository }}/backend images: ${{ gitea.server_url }}/${{ gitea.repository }}/backend
tags: | tags: |
type=ref,event=branch type=ref,event=branch
type=sha,prefix={{branch}}- type=sha,prefix={{branch}}-
type=raw,value=latest,enable={{is_default_branch}} type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push image - name: Build and push image
uses: docker/build-push-action@v5 uses: https://github.com/docker/build-push-action@v5
with: with:
context: ./backend context: ./backend
push: true push: true
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha cache-from: type=gha
cache-to: type=gha,mode=max cache-to: type=gha,mode=max
docker-frontend: docker-frontend:
name: Build and Push Frontend Image name: Build and Push Frontend Image
runs-on: docker runs-on: docker
steps: steps:
- name: Checkout Repo - name: Checkout Repo
uses: actions/checkout@v4 uses: https://github.com/actions/checkout@v4
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: https://github.com/docker/setup-buildx-action@v3
- name: Login to Forgejo Container Registry - name: Login to Forgejo Container Registry
uses: docker/login-action@v3 uses: https://github.com/docker/login-action@v3
with: with:
registry: ${{ forgejo.server_url }} registry: ${{ gitea.server_url }}
username: ${{ forgejo.actor }} username: ${{ gitea.actor }}
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata - name: Extract metadata
id: meta id: meta
uses: docker/metadata-action@v5 uses: https://github.com/docker/metadata-action@v5
with: with:
images: ${{ forgejo.server_url }}/${{ forgejo.repository }}/frontend images: ${{ gitea.server_url }}/${{ gitea.repository }}/frontend
tags: | tags: |
type=ref,event=branch type=ref,event=branch
type=sha,prefix={{branch}}- type=sha,prefix={{branch}}-
type=raw,value=latest,enable={{is_default_branch}} type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push image - name: Build and push image
uses: docker/build-push-action@v5 uses: https://github.com/docker/build-push-action@v5
with: with:
context: ./frontend context: ./frontend
push: true push: true
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha cache-from: type=gha
cache-to: type=gha,mode=max cache-to: type=gha,mode=max