chore: updated a function in the main script #38
Workflow file for this run
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: Test auto-generation | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ^1.17 | |
- name: "Run generator tests" | |
shell: bash | |
run: | | |
sudo bash ./test.sh 2>&1 | |
working-directory: generate | |
- name: "Run regeneration script" | |
shell: bash | |
run: | | |
sudo bash ./generate-all.sh 2>&1 | |
working-directory: generate | |
- name: List output directory | |
run: ls -lsh block | |
- name: Output generated release description | |
run: cat generate/release/release.md |