Files
NNG/.github/workflows/build_non_main.yml
Workflow config file is invalid. Please check your config file: yaml: line 2: did not find expected ',' or ']'
2023-05-10 16:46:34 +02:00

16 lines
301 B
YAML

name: Build non-main
run-name: Build non-main branch
on: [
workflow_dispatch,
push:
branches: [ "!main" ]]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build docker image
run: docker build . --file Dockerfile --tag game:latest