add gitea action for building app container
Some checks failed
Build Docker containers / Build (push) Failing after 2m19s
Some checks failed
Build Docker containers / Build (push) Failing after 2m19s
This commit is contained in:
13
.gitea/workflows/build.yml
Normal file
13
.gitea/workflows/build.yml
Normal file
@ -0,0 +1,13 @@
|
||||
name: Build Docker containers
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
Build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Build docker image
|
||||
run: docker build -t git.arinity.org/ctmesh/map:latest .
|
||||
- name: Push image
|
||||
run: docker push git.arinity.org/ctmesh/map:latest
|
Reference in New Issue
Block a user