This commit is contained in:
parent
d1a2fea5db
commit
786377ed9c
19
.gitea/workflows/docker-build.yml
Normal file
19
.gitea/workflows/docker-build.yml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
name: Docker Build
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Build Docker Image
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Build Docker Image
|
||||||
|
run: docker build -t my-app:test .
|
||||||
Loading…
x
Reference in New Issue
Block a user