Moonlight/.github/workflows/test-docker-build.yml

18 lines
424 B
YAML
Raw Normal View History

name: Test Build
on:
push:
2023-05-22 07:42:21 +00:00
branches: [ "main" ]
pull_request:
types:
- closed
2023-05-22 07:42:21 +00:00
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
2023-05-22 07:42:21 +00:00
- name: Build Docker image
run: docker build -t moonlightpanel/moonlight:${{ github.sha }} -f Moonlight/Dockerfile .