Skip to content

move contributing guide to the repo #10

move contributing guide to the repo

move contributing guide to the repo #10

Workflow file for this run

name: Release
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.18
- name: Build
run: gen/xbuild.sh
- name: Release
uses: softprops/action-gh-release@v1
with:
files: dist/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
winget:
runs-on: ubuntu-latest
needs: build
steps:
- uses: vedantmgoyal2009/winget-releaser@v2
with:
identifier: gokcehan.lf
version: ${{ github.ref_name }}
installers-regex: '-windows-\w+\.zip$'
token: ${{ secrets.WINGET_TOKEN }}