[api] API delay before readiness (#4516) #64
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: Release | |
on: | |
push: | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+" | |
jobs: | |
build: | |
name: Release | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
artifact_name: ioctl-linux-amd64 | |
server_artifact_name: iotex-core-linux-amd64 | |
- os: windows-latest | |
artifact_name: ioctl-windows-amd64.exe | |
server_artifact_name: iotex-core-windows-amd64.exe | |
- os: macos-latest | |
artifact_name: ioctl-darwin-amd64 | |
server_artifact_name: iotex-core-darwin-amd64 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21.4 | |
- name: make iotex-server/ioctl | |
if: startsWith(matrix.os, 'windows-latest') != true | |
run: | | |
make build | |
- name: make iotex-server/ioctl windows | |
if: startsWith(matrix.os, 'windows-latest') | |
run: | | |
make ioctl | |
- name: Upload iotex-core binaries to release | |
if: startsWith(matrix.os, 'windows-latest') != true | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ./bin/server | |
asset_name: ${{ matrix.server_artifact_name }} | |
tag: ${{ github.ref }} | |
- name: Configure iotex-core GPG Linux/MacOS | |
if: startsWith(matrix.os, 'windows-latest') != true | |
env: | |
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }} | |
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
run: | | |
export GPG_TTY=$(tty) | |
echo "$GPG_SIGNING_KEY" | gpg --batch --import | |
echo "$GPG_PASSPHRASE" | gpg --passphrase-fd 0 --pinentry-mode loopback --batch -ab ./bin/server | |
- name: Upload iotex-core signature | |
if: startsWith(matrix.os, 'windows-latest') != true | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
asset_name: ${{ matrix.server_artifact_name }}.asc | |
file: ./bin/server.asc | |
tag: ${{ github.ref }} | |
- name: Upload ioctl binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ./bin/ioctl | |
asset_name: ${{ matrix.artifact_name }} | |
tag: ${{ github.ref }} | |
- name: Configure ioctl GPG Linux/MacOS | |
if: startsWith(matrix.os, 'windows-latest') != true | |
env: | |
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }} | |
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
run: | | |
export GPG_TTY=$(tty) | |
echo "$GPG_SIGNING_KEY" | gpg --batch --import | |
echo "$GPG_PASSPHRASE" | gpg --passphrase-fd 0 --pinentry-mode loopback --batch -ab ./bin/ioctl | |
- name: Configure ioctl GPG Windows | |
if: startsWith(matrix.os, 'windows-latest') | |
env: | |
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }} | |
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
run: | | |
echo $env:GPG_SIGNING_KEY | gpg --batch --import | |
gpg --passphrase "$env:GPG_PASSPHRASE" --batch --pinentry-mode loopback -ab ./bin/ioctl | |
- name: Upload ioctl signature | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
asset_name: ${{ matrix.artifact_name }}.asc | |
file: ./bin/ioctl.asc | |
tag: ${{ github.ref }} |