Skip to content

v0.25.0-rc2

v0.25.0-rc2 #77

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@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- 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: build
run: |
make schema
- name: upload
uses: skx/github-action-publish-binaries@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: 'schema.json'