8a7ebfefa1
Signed-off-by: martabal <74269598+martabal@users.noreply.github.com>
17 lines
No EOL
310 B
YAML
17 lines
No EOL
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 |