mirror of
https://github.com/openziti/zrok.git
synced 2024-12-23 23:29:22 +01:00
42 lines
772 B
YAML
42 lines
772 B
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
release-build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- run: git fetch --force --tags
|
|
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '>=1.19.3'
|
|
cache: true
|
|
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16.x
|
|
|
|
- run: npm install
|
|
working-directory: ui
|
|
|
|
- run: npm run build
|
|
working-directory: ui
|
|
env:
|
|
CI: ""
|
|
|
|
- uses: goreleaser/goreleaser-action@v2
|
|
with:
|
|
distribution: goreleaser
|
|
version: latest
|
|
args: release --rm-dist
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|