Merge pull request #141 from soramitsu/scenarious/fix/query_batch_count #104
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: I2-PERF::CI::Publish | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: [master] | |
workflow_dispatch: | |
inputs: | |
GITHUB_IROHA2_BRANCH: | |
description: "iroha2 repo branch to take the image tag release" | |
required: false | |
default: iroha2-stable | |
env: | |
IROHA2_RELEASE: ${{ github.event.inputs.GITHUB_IROHA2_BRANCH || 'iroha2-stable' }} | |
jobs: | |
registry: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Bump version and save the semver tag | |
uses: anothrNick/github-tag-action@a2c70ae13a881faf2b4953baaa9e49731997ab36 | |
id: tag_id | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
WITH_V: false | |
DEFAULT_BUMP: none | |
- name: Get the release from a branch name | |
run: | | |
RELEASE=$(curl -s https://raw.githubusercontent.com/hyperledger/iroha/${{ ENV.IROHA2_RELEASE }}/Cargo.toml \ | |
| sed -n '3p' | sed -e 's/version = "//g' -e 's/"$//' | tr -d '\n') | |
echo "RELEASE=$RELEASE" >>$GITHUB_ENV | |
- name: Login to Soramitsu Harbor | |
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d | |
with: | |
registry: docker.soramitsu.co.jp | |
username: ${{ secrets.HARBOR_USERNAME }} | |
password: ${{ secrets.HARBOR_PASSWORD }} | |
- name: Build and push iroha2-perf image | |
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 | |
with: | |
push: true | |
tags: docker.soramitsu.co.jp/iroha2/iroha2-perf:${{ steps.tag_id.outputs.new_tag }}-${{ env.RELEASE }} | |
file: Dockerfile | |
context: . |