ci: add simple test build workflow for Gitea Actions
All checks were successful
Test Build / build (push) Successful in 27s
All checks were successful
Test Build / build (push) Successful in 27s
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
63a92cf7d7
commit
ccd2dca77a
22
.gitea/workflows/test-build.yml
Normal file
22
.gitea/workflows/test-build.yml
Normal file
@ -0,0 +1,22 @@
|
||||
name: Test Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: wsl
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Build archon-server image
|
||||
run: |
|
||||
cd python
|
||||
docker build -f Dockerfile.server -t archon-server:test .
|
||||
|
||||
- name: Show Docker images
|
||||
run: docker images | grep archon
|
||||
Loading…
Reference in New Issue
Block a user