Files
docker-images/.gitea/workflows/build-opencode.yaml
T
woggioni d95df1f718
CI / Build opencode docker images (push) Successful in 14m27s
bump opencode to 1.18.10
also added `docker-compose` to opencode
2026-07-30 23:10:49 +08:00

56 lines
1.6 KiB
YAML

name: CI
on:
push:
branches: [ master ]
paths:
- 'opencode/*'
- '.gitea/workflows/build-opencode.yaml'
jobs:
"Build opencode docker images":
runs-on: hostinger
steps:
-
name: Login to Gitea container registry
uses: docker/login-action@v3
with:
registry: gitea.woggioni.net
username: woggioni
password: ${{ secrets.PUBLISHER_TOKEN }}
-
name: Build and push opencode binary images
uses: docker/build-push-action@v6
with:
builder: multiplatform-builder
context: "{{defaultContext}}:opencode"
ssh: default=/var/lib/gitea-runner/.ssh/id_ed25519
target: release-bin
build-args: |
OPENCODE_VERSION=1.18.10
BUN_VERSION=1.3.14
platforms: |
linux/amd64
push: true
pull: true
tags: |
"gitea.woggioni.net/woggioni/opencode:1.18.10-bin"
"gitea.woggioni.net/woggioni/opencode:1.18.10"
"gitea.woggioni.net/woggioni/opencode:latest"
-
name: Build and push opencode build-from-source images
uses: docker/build-push-action@v6
with:
builder: multiplatform-builder
context: "{{defaultContext}}:opencode"
ssh: default=/var/lib/gitea-runner/.ssh/id_ed25519
target: release
build-args: |
OPENCODE_VERSION=1.18.10
BUN_VERSION=1.3.14
platforms: |
linux/amd64
push: true
pull: true
tags: |
"gitea.woggioni.net/woggioni/opencode:1.18.10-bfs"