14 lines
225 B
YAML
14 lines
225 B
YAML
name: build-image
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Build image
|
|
run: make docker-build IMAGE_TAG=${{ gitea.sha }}
|