17 lines
310 B
YAML
17 lines
310 B
YAML
|
name: Build
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
push:
|
||
|
branches: [ "main" ]
|
||
|
pull_request:
|
||
|
branches: [ "main" ]
|
||
|
jobs:
|
||
|
|
||
|
build:
|
||
|
name: Run build
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout code
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Build
|
||
|
run: go build -o ./immich.out ./src
|