Files
docker-images/.gitea/workflows/build-opencode.yaml
T
woggioni 9c63e06cc8
CI / Build opencode docker images (push) Successful in 7m44s
bump opencode to 1.17.13
2026-07-02 00:07:07 +08:00

36 lines
917 B
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 images
uses: docker/build-push-action@v6
with:
builder: multiplatform-builder
context: "{{defaultContext}}:opencode"
build-args: |
OPENCODE_VERSION=1.17.13
platforms: |
linux/amd64
push: true
pull: true
tags: |
"gitea.woggioni.net/woggioni/opencode:1.17.13"
"gitea.woggioni.net/woggioni/opencode:latest"