Skip to content

Commit bea1848

Browse files
authored
chore: Release scripts use safer common tool to install python dependencies (#144)
1 parent c087cd8 commit bea1848

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/conformance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- main
99
workflow_dispatch:
1010
jobs:
11-
build:
11+
conformance:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:

.github/workflows/unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- main
99
workflow_dispatch:
1010
jobs:
11-
test:
11+
unit-test:
1212
if: ${{ github.repository == 'GoogleCloudPlatform/functions-framework-ruby' }}
1313
strategy:
1414
matrix:

.kokoro/release.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ set -eo pipefail
77
export GEM_HOME=$HOME/.gem
88
export PATH=$GEM_HOME/bin:$PATH
99

10-
python3 -m pip install git+https://github.com/googleapis/releasetool
11-
python3 -m pip install gcp-docuploader
1210
gem install --no-document toys
13-
11+
toys release install-python-tools -v
1412
python3 -m releasetool publish-reporter-script > /tmp/publisher-script; source /tmp/publisher-script
1513
toys release perform -v --enable-docs < /dev/null

0 commit comments

Comments
 (0)