Skip to content

Feat/incentive param (#296) #482

Feat/incentive param (#296)

Feat/incentive param (#296) #482

Workflow file for this run

# This workflow creates a release using goreleaser
# via the 'make release' command.
name: Create release
on:
push:
tags:
- v*
permissions:
contents: write
jobs:
release:
name: Create release
runs-on: ubuntu-latest
steps:
-
name: Check out repository code
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.event.inputs.release_tag }}
-
name: Make release
run: |
sudo rm -rf dist
make release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}