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

EVEREST-107 Fix tests run (#185) #40

EVEREST-107 Fix tests run (#185)

EVEREST-107 Fix tests run (#185) #40

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 "IMAGE_TAG=${{ github.ref_name }}" >> $GITHUB_ENV
- name: Build binaries
run: make release
- name: Create release with binaries
uses: softprops/action-gh-release@v1
with:
draft: true
files: |
dist/*
env:
GITHUB_TOKEN: ${{ github.token }}