2024-12-02 12:59:37 +01:00
|
|
|
name: Release CI action
|
|
|
|
run-name: ${{ gitea.repository }} release
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2024-12-02 11:04:20 +01:00
|
|
|
|
|
|
|
jobs:
|
2024-12-02 12:59:37 +01:00
|
|
|
build-container:
|
|
|
|
runs-on: alpine-latest
|
2024-12-02 11:04:20 +01:00
|
|
|
steps:
|
2024-12-02 12:59:37 +01:00
|
|
|
- name: checkout
|
2024-12-02 11:04:20 +01:00
|
|
|
uses: actions/checkout@v4
|
2024-12-02 12:59:37 +01:00
|
|
|
- name: build container
|
|
|
|
run: docker build -t ${{ gitea.repository }}:latest .
|