Debain-repos/.gitea/workflows/buildDockerImage.yaml
Workflow config file is invalid. Please check your config file: yaml: line 12: did not find expected '-' indicator
2025-05-11 14:04:14 +02:00

24 lines
573 B
YAML

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