fix(#252): Handle an empty Server Stat map returned from Sab. (#259) #2
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: Versioned Release | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Tests | |
uses: ./.github/actions/tests | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Lint | |
uses: ./.github/actions/lint | |
release-image: | |
runs-on: ubuntu-latest | |
needs: | |
- tests | |
- lint | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Build | |
uses: ./.github/actions/docker-image | |
with: | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
release-binaries: | |
runs-on: ubuntu-latest | |
needs: | |
- tests | |
- lint | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Release | |
uses: ./.github/actions/go-release | |
with: | |
token: "${{ secrets.GITHUB_TOKEN }}" |