Files
ubuntu-node/.gitea/workflows/build-image.yml
supphakitd 2b05f5ff4a
All checks were successful
Build Docker Image / Build Docker Image (push) Successful in 12s
Workflow: use public docker image
Signed-off-by: supphakitd <67319010028@technictrang.ac.th>
2025-11-26 16:11:17 +07:00

16 lines
419 B
YAML

name: Build Docker Image
run-name: Build Docker Image
on: [push]
jobs:
Build Docker Image:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Build docker image
run: |
set +e
docker image rm -f eric9342112/gitea-ubuntu-node:latest
set -e
docker build . -t eric9342112/gitea-ubuntu-node:latest