ca756f2885
All checks were successful
/ Compilation of Docker image for Godot (push) Successful in 3m54s
23 lines
No EOL
687 B
YAML
23 lines
No EOL
687 B
YAML
on: [push]
|
|
jobs:
|
|
compilation:
|
|
name: Compilation of Docker image for Godot
|
|
runs-on: bookworm
|
|
container: docker
|
|
steps:
|
|
- name: Add NodeJs
|
|
run: |
|
|
uname -a
|
|
apk add nodejs npm
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
github-server-url: https://git.numenaute.org/
|
|
- name: Compile Godot
|
|
run: |
|
|
cd godot4
|
|
docker build -t khaganat/godot-export:4 .
|
|
docker tag khaganat/godot-export:4 khaganat/godot-export:4
|
|
# - name: Push the Docker image to Docker Hub
|
|
# run: |
|
|
# docker push khaganat/godot-export:4 |