Files
webdlp/.gitea/workflows/publish.yaml
T
Workflow config file is invalid. Please check your config file: resolve aliases: yaml: mapping values are not allowed in this context
2026-03-11 20:19:48 +01:00

46 lines
687 B
YAML

name: Docker Buildname: Docker Build
on:
push:
branches:
- main
jobs:
build:
runs-on: docker
container:
image: node:20
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build docker image
run: docker build -t myapp:latest .
- name: Show images
run: docker images
on:
push:
branches:
- main
jobs:
build:
runs-on: docker
container:
image: node:20
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build docker image
run: docker build -t myapp:latest .
- name: Show images
run: docker images