This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
EVEREST-107 wait for everest to be ready #14
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 "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: | |
files: | | |
dist/* | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |