This commit is contained in:
YuruC3
2025-05-11 14:04:14 +02:00
parent 03e2b93f56
commit 44b3effa06
2 changed files with 24 additions and 19 deletions

View File

@@ -0,0 +1,24 @@
name: Try building docker image
run-name: Try building docker image
on:
push:
branches:
- main
jobs:
smth:
name: idk something
runs-on: [ubuntu-latest, amd64]
env:
- IMAGE_NAME: somename
steps:
- name: Check out code
uses: actions/checkout@main
- name: Build docker image
run: docker build -t $IMAGE_NAME:latest ./docker/
# branch v3
# uses: actions/checkout@v3
# - name: Build docker images
# run: docker compose build
# - name: Start
# run: docker compose run