chore(main): release 1.1.0 (#7) #2
Workflow file for this run
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: | |
| push: | |
| tags: | |
| - "*" | |
| permissions: | |
| contents: write | |
| env: | |
| GO_VERSION: "1.23" | |
| jobs: | |
| manual-release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| - name: Install go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ env.GO_VERSION }} | |
| - name: Perform cross builds | |
| run: make cross | |
| - name: Compress binaries | |
| run: | | |
| cd out | |
| tar czf web3datacli_${GITHUB_REF#refs/tags/}_darwin_amd64.tar.gz web3datacli_${GITHUB_REF#refs/tags/}_darwin_amd64/ | |
| tar czf web3datacli_${GITHUB_REF#refs/tags/}_linux_amd64.tar.gz web3datacli_${GITHUB_REF#refs/tags/}_linux_amd64/ | |
| - name: Get git tag | |
| run: echo "tag=$(git describe --tags --exact-match HEAD)" >> $GITHUB_ENV | |
| - name: Publish binaries | |
| uses: svenstaro/upload-release-action@04733e069f2d7f7f0b4aebc4fbdbce8613b03ccd # 2.9.0 | |
| with: | |
| repo_token: ${{ secrets.RELEASE_TOKEN }} | |
| tag: ${{ env.tag }} | |
| release_name: ${{ env.tag }} | |
| file_glob: true | |
| file: out/*.tar.gz | |
| overwrite: true |