Skip to content

only display copy hash on finished videos #191

only display copy hash on finished videos

only display copy hash on finished videos #191

Workflow file for this run

name: Build
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
backend:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
check-latest: true
cache: true
- name: Build
run: go build -v -ldflags "-X main.GitHash=${GITHUB_SHA}"
- name: Upload backend build artifact
uses: actions/upload-artifact@v3
with:
name: backend
path: pomu
frontend:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '19'
cache: 'yarn'
- name: Download / Refresh dependencies
run: yarn install --immutable --immutable-cache
- name: Build
run: yarn build
- name: Upload frontend build artifacts
uses: actions/upload-artifact@v3
with:
name: frontend
path: dist/