feat(jzero): update workflow #5
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: jzero-upload-examples-ci | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
golangci: | |
name: ci | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '1.22.3' | |
- name: Install Jzero and Grum | |
run: | | |
go install | |
jzero check | |
go install github.com/jaronnie/grum@latest | |
- name: upload | |
run: | | |
GITHUB_TOKEN=${{ secrets.ACCESS_TOKEN }} grum clone https://github.com/jzero-io/examples | |
cd examples | |
rm -rf quickstart | |
jzero new quickstart | |
cd quickstart && jzero gen | |
jzero gen swagger | |
jzero gen sdk | |
jzero gen zrpcclient | |
go mod tidy | |
go run main.go version | |
git add . | |
git commit -m "chore(quickstart): update quickstart" | |
git push -f |