This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
0.8.0 version #61
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release CLI artifacts | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
- name: Set release version | |
run: echo "RELEASE_VERSION=$(echo ${{ github.ref_name }}|cut -b2-)" >> $GITHUB_ENV | |
- name: Build binaries | |
run: | | |
echo $IMAGE_TAG | |
git describe --always --dirty | cut -b2- | |
make release | |
- name: Create release with binaries | |
uses: softprops/action-gh-release@v1 | |
with: | |
draft: true | |
files: | | |
dist/* | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |