Skip to content

Commit c3b5b9f

Browse files
release action is language specific (#377)
1 parent b0df220 commit c3b5b9f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release-java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
overrideVersion: ${{ github.event.inputs.packageVersion }}
4444
- name: Publish package
4545
run: |
46-
python ../devops/build_sdks.py --package-version=${{ steps.setversion.outputs.packageVersion }}
46+
python ../devops/build_sdks.py --package-version=${{ steps.setversion.outputs.packageVersion }} --language=java
4747
gradle jar
4848
working-directory: java
4949
env:

.github/workflows/release-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: |
2828
python -m pip install -r requirements.txt
2929
python -m pip install build
30-
python ../devops/build_sdks.py --package-version=${{ github.event.inputs.packageVersion }}
30+
python ../devops/build_sdks.py --package-version=${{ github.event.inputs.packageVersion }} --language=python
3131
python -m build --sdist --wheel --outdir dist/ .
3232
shell: pwsh
3333
working-directory: python

.github/workflows/release-ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: |
4040
gem install bundler
4141
bundle install
42-
python ../devops/build_sdks.py --package-version=${{ github.event.inputs.packageVersion }}
42+
python ../devops/build_sdks.py --package-version=${{ github.event.inputs.packageVersion }} --language=ruby
4343
4444
mkdir -p $HOME/.gem
4545
touch $HOME/.gem/credentials

0 commit comments

Comments
 (0)