fix bad block generation for too many new accounts in full blocks #11
This file contains hidden or 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: Release | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v1 | |
| - name : Meson Test | |
| run : DOCKER_BUILDKIT=1 docker build . --file dockerfiles/run_tests --progress plain | |
| - name: Docker Build | |
| run: DOCKER_BUILDKIT=1 docker build . -f dockerfiles/build_linux --output build | |
| - name: Docker Build Windows | |
| run: DOCKER_BUILDKIT=1 docker build . -f dockerfiles/build_windows --output ./build/windows | |
| - name : Docker Build MacOS | |
| run : DOCKER_BUILDKIT=1 docker build . -f dockerfiles/build_macos --output ./build/aarch64-macos | |
| - name: Call Docker | |
| uses: peter-evans/repository-dispatch@v3 | |
| with: | |
| event-type: docker | |
| - name: Get version | |
| id: get_version | |
| run: | | |
| echo "VERSION=$(grep 'version :' meson.build | cut -d "'" -f 2)" >> $GITHUB_ENV | |
| - name: Release | |
| uses: softprops/action-gh-release@v2.2.1 | |
| with: | |
| tag_name: ${{ env.VERSION }} | |
| generate_release_notes: true | |
| make_latest: true | |
| files: | | |
| ./build/aarch64-macos/wart-wallet-aarch64 | |
| ./build/aarch64-macos/wart-node-aarch64 | |
| ./build/windows/wart-wallet-windows.exe | |
| ./build/windows/wart-node-windows.exe | |
| ./build/wart-node-linux | |
| ./build/wart-wallet-linux |