Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

0.8.0 version

0.8.0 version #61

Workflow file for this run

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 }}