Skip to content

Commit b519d69

Browse files
committed
creating GH release
1 parent fa71db0 commit b519d69

File tree

5 files changed

+7
-2
lines changed

5 files changed

+7
-2
lines changed

.github/workflows/release-layer-collector.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
path: ${{ github.workspace }}/collector/build/opentelemetry-collector-layer-${{ matrix.architecture }}.zip
3434
- name: Add Binary to Release
3535
run: |
36+
gh release create ${{github.ref_name}}
3637
gh release upload ${{github.ref_name}} ${{ github.workspace }}/collector/build/opentelemetry-collector-layer-${{ matrix.architecture }}.zip
3738
env:
3839
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release-layer-java.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ jobs:
4646

4747
- name: Add Binary to Release
4848
run: |
49+
gh release create ${{github.ref_name}}
4950
gh release upload ${{github.ref_name}} java/layer-wrapper/build/distributions/opentelemetry-javawrapper-layer.zip
5051
env:
5152
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release-layer-nodejs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ jobs:
4747

4848
- name: Add Binary to Release
4949
run: |
50+
gh release create ${{github.ref_name}}
5051
gh release upload ${{github.ref_name}} nodejs/packages/layer/build/opentelemetry-nodejs-layer.zip
5152
env:
5253
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release-layer-python.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ jobs:
5454

5555
- name: Add Binary to Release
5656
run: |
57-
gh release upload ${{github.ref_name}} python/src/build/opentelemetry-python-layer.zip
57+
gh release create ${{github.ref_name}}
58+
gh release upload ${{github.ref_name}} python/src/build/opentelemetry-python-layer.zip
5859
env:
5960
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6061

.github/workflows/release-layer-ruby.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ jobs:
4646

4747
- name: Add Binary to Release
4848
run: |
49-
gh release upload ${{github.ref_name}} ruby/src/build/opentelemetry-ruby-layer.zip
49+
gh release create ${{github.ref_name}}
50+
gh release upload ${{github.ref_name}} ruby/src/build/opentelemetry-ruby-layer.zip
5051
env:
5152
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5253

0 commit comments

Comments
 (0)