Skip to content
This repository has been archived by the owner on Feb 15, 2025. It is now read-only.

Workflow file for this run

name: Release Binary
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
goreleaser:
name: "Release Binary"
if: github.repository == 'hantbk/vtsbackup'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: "Build Web"
run: |
cd web
yarn && yarn build
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}