Files
dropshell/.gitea/workflows/buildtestpublish.yaml
j842 84697c0723
All checks were successful
Build-Test-Publish / build (linux/amd64) (push) Successful in 1m8s
Build-Test-Publish / build (linux/arm64) (push) Successful in 4m3s
test: Add 1 and update 2 files
2025-08-17 21:12:13 +12:00

44 lines
915 B
YAML

name: Build-Test-Publish
run-name: Build test and publish dropshell
on: [push]
defaults:
run:
shell: bash
jobs:
build:
strategy:
matrix:
platform:
- linux/amd64
- linux/arm64
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to Gitea
uses: docker/login-action@v3
with:
registry: gitea.jde.nz
username: DoesntMatter
password: ${{ secrets.DOCKER_PUSH_TOKEN }}
- name: Build
run: |
./build.sh
- name: Run Tests
run: |
./test.sh
- name: Publish as Latest
run: |
# Only publish on main branch
if [ "$GITHUB_REF" = "refs/heads/main" ]; then
SOS_WRITE_TOKEN=${{ secrets.SOS_WRITE_TOKEN }} \
./publish.sh
fi