24 lines
558 B
YAML
24 lines
558 B
YAML
|
name: Image builder
|
||
|
on:
|
||
|
release:
|
||
|
types: [released]
|
||
|
push:
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
container:
|
||
|
image: git.halis.io/athens-school/runner-images:debian12.1-node18
|
||
|
runs-on: [arm64]
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Login to register
|
||
|
uses: https://gitea.com/docker/login-action@v2
|
||
|
with:
|
||
|
registry: https://git.halis.io
|
||
|
username: ${{ github.actor }}
|
||
|
password: ${{ secrets.CONTAINER_TOKEN }}
|
||
|
- name: Start shell build
|
||
|
run: ./build.sh
|