16 lines
301 B
YAML
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
|