Skip to content

v0.24.2

v0.24.2 #94

Workflow file for this run

# name of the action
name: spec
# trigger on release events
on:
release:
types: [ created ]
# pipeline to execute
jobs:
schema:
runs-on: ubuntu-latest
steps:
- name: clone
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: install go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
# use version from go.mod file
go-version-file: 'go.mod'
cache: true
check-latest: true
- name: tags
run: |
git fetch --tags
- name: create spec
run: |
sudo make spec-install
make spec
- name: upload spec
uses: skx/github-action-publish-binaries@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: 'api-spec.json'