mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2026-01-02 11:07:21 +01:00
45 lines
1010 B
YAML
45 lines
1010 B
YAML
name: Publish Release Binaries
|
|
|
|
on:
|
|
push:
|
|
tags: [ 'v*.*.*' ]
|
|
|
|
jobs:
|
|
goreleaser:
|
|
name: goreleaser
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v5
|
|
|
|
- uses: pnpm/action-setup@v2
|
|
with:
|
|
version: 9.15.3
|
|
|
|
- name: Build Frontend and Copy to Backend
|
|
working-directory: frontend
|
|
run: |
|
|
pnpm install
|
|
pnpm run build
|
|
cp -r ./.output/public ../backend/app/api/static/
|
|
|
|
- name: Install CoSign
|
|
working-direcotry: backend
|
|
run: |
|
|
go install github.com/sigstore/cosign/cmd/cosign@latest
|
|
|
|
- name: Run GoReleaser
|
|
uses: goreleaser/goreleaser-action@v5
|
|
with:
|
|
workdir: "backend"
|
|
distribution: goreleaser
|
|
version: latest
|
|
args: release --clean
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|