add doclink and agent id for ext #26
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: REBYTE CLI RELEASE | |
on: | |
push: | |
tags: | |
- v** | |
jobs: | |
build: | |
name: Upload Release Asset | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.39.1 # Run with latest stable Deno. | |
- name: Update Versio File | |
run: ./.github/scripts/update_version_file.sh ${{ github.ref_name }} | |
- name: Build project | |
run: ./build.sh | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
rebyte-linux-x64 | |
rebyte-macos-x64 | |
rebyte-macos-arm64 |