add sign and send txs in file #420
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
# This is a basic workflow that is manually triggered | |
name: manually make bin for all branch | |
# Controls when the action will run. Workflow runs when manually triggered using the UI | |
# or API. | |
on: [push,pull_request] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
automake: | |
name: automake | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version-file: 'go.mod' | |
- name: compile binary | |
run: make all-arch | |
- name : Upload artifact bin | |
uses: actions/upload-artifact@v2 | |
with: | |
name: chain33-artifact | |
path: | | |
build/*.tar.gz | |
build/*.zip |