You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Cloak/.github/workflows/release.yml

23 lines
487 B
YAML

on:
push:
tags:
- 'v*'
name: Create Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: |
export PATH=${PATH}:`go env GOPATH`/bin
v=${{ github.ref }} ./release.sh
- name: Release
uses: softprops/action-gh-release@v1
with:
fail_on_unmatched_files: true
files: release/*.*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}