Skip to content

v0.23.0-rc2

v0.23.0-rc2 #68

Workflow file for this run

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