Added test workflow
All checks were successful
Build the docker image / build (push) Successful in 9m13s
All checks were successful
Build the docker image / build (push) Successful in 9m13s
This commit is contained in:
15
.gitea/workflows/build-image.yaml
Normal file
15
.gitea/workflows/build-image.yaml
Normal file
@ -0,0 +1,15 @@
|
||||
name: Build the docker image
|
||||
run-name: Building emacs docker image.
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v4
|
||||
- name: Docker build
|
||||
run: |
|
||||
cd ${{ gitea.workspace }}
|
||||
docker build . -t emacs-c
|
||||
|
Reference in New Issue
Block a user