Skip to content

Commit

Permalink
Improve punctuation
Browse files Browse the repository at this point in the history
  • Loading branch information
michalinacienciala committed Aug 17, 2022
1 parent fb17ec8 commit ed99c3a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions .github/actions/build-and-deploy-to-bucket/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ inputs:
packages should be used for building.
required: true
ethUrlHttp:
description: The HTTP ETH API URL
description: The HTTP ETH API URL.
required: true
ethUrlWS:
description: The WebSocket ETH API URL
description: The WebSocket ETH API URL.
required: true
useUpstreamBuilds:
description: True if the upstream builds should be used
description: True if the upstream builds should be used.
required: true
default: "false"
upstreamBuilds:
description: Upstream builds (required if `useUpstreamBuilds==true`)
description: Upstream builds (required if `useUpstreamBuilds==true`).
required: false
dependentPackagesTag:
description: >
Expand All @@ -28,13 +28,13 @@ inputs:
`useUpstreamBuilds==false`). For example `dappdevgoerli`.
required: false
gcpServiceKey:
description: JSON key for Google Cloud Platform service account
description: JSON key for Google Cloud Platform service account.
required: true
bucketName:
description: The name of the bucket where code wil be deployed.
required: true
preview:
description: True if the code should be pushed to the preview bucket
description: True if the code should be pushed to the preview bucket.
required: true
default: "false"

Expand Down Expand Up @@ -81,7 +81,7 @@ runs:
# Currently we only support `environment` = `goerli`. We provide explicit
# version of the `keep-core` package, because using `goerli` tag results in
# `expected manifest` error - probably caused by bug in Yarn:
# https://github.com/yarnpkg/yarn/issues/4731.
# https://github.com/yarnpkg/yarn/issues/4731.

# TODO: Add upgrade of @keep-network/random-beacon, @keep-network/ecdsa,
# @keep-network/tbtc-v2 once they'll be added as dashboard's dependencies.
Expand All @@ -103,7 +103,7 @@ runs:
- name: Load environment variables
uses: keep-network/ci/actions/load-env-variables@v2
with:
environment: ${{ inputs.environment }}
environment: ${{ inputs.environment }}

- name: Build
if: inputs.preview == 'true'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/dashboard-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
# - name: Test
# run: yarn test

# The code will be published to `https://preview.dashboard.test.threshold.network/${{ github.head_ref }}/index.html.`
# The code will be published to https://preview.dashboard.test.threshold.network/${{ github.head_ref }}/index.html.
build-and-deploy-testnet-preview:
name: Deploy preview to testnet
needs: build-and-test
Expand All @@ -118,7 +118,7 @@ jobs:
# pods is needed, we configure the job to use the protected `testnet`
# environment. Thanks to this, the job won't start until somebody approves it
# in GH Actions.
# The code will be published to `https://dashboard.test.threshold.network/index.html.`
# The code will be published to https://dashboard.test.threshold.network/index.html.
build-and-deploy-testnet-on-dispatch:
name: Deploy to testnet
needs: build-and-test
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
# triggering is not related to the changes in the contracts / client code, we
# don't need to rotate the pods and hence don't need to wait with the
# execution of workflow for the manual approval.
# The code will be published to `https://dashboard.test.threshold.network/index.html.`
# The code will be published to https://dashboard.test.threshold.network/index.html.
build-and-deploy-testnet-on-push:
name: Deploy to testnet
needs: build-and-test
Expand Down

0 comments on commit ed99c3a

Please sign in to comment.