Skip to content

v0.26.0-rc3

v0.26.0-rc3 #102

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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: install go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
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: |
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'