Skip to content

Commit fa71db0

Browse files
committed
adding github token
1 parent 66f2b2f commit fa71db0

5 files changed

+10
-0
lines changed

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

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ jobs:
3434
- name: Add Binary to Release
3535
run: |
3636
gh release upload ${{github.ref_name}} ${{ github.workspace }}/collector/build/opentelemetry-collector-layer-${{ matrix.architecture }}.zip
37+
env:
38+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3739
- name: Save Collector Version
3840
if: ${{ matrix.architecture == 'amd64' }}
3941
id: save-collector-version

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

+2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ jobs:
4747
- name: Add Binary to Release
4848
run: |
4949
gh release upload ${{github.ref_name}} java/layer-wrapper/build/distributions/opentelemetry-javawrapper-layer.zip
50+
env:
51+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5052

5153
- name: Save Javaagent Version
5254
id: save-javaagent-version

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

+2
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ jobs:
4848
- name: Add Binary to Release
4949
run: |
5050
gh release upload ${{github.ref_name}} nodejs/packages/layer/build/opentelemetry-nodejs-layer.zip
51+
env:
52+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5153

5254
publish-layer:
5355
uses: ./.github/workflows/layer-publish.yml

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

+2
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ jobs:
5555
- name: Add Binary to Release
5656
run: |
5757
gh release upload ${{github.ref_name}} python/src/build/opentelemetry-python-layer.zip
58+
env:
59+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5860

5961
publish-layer:
6062
uses: ./.github/workflows/layer-publish.yml

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

+2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ jobs:
4747
- name: Add Binary to Release
4848
run: |
4949
gh release upload ${{github.ref_name}} ruby/src/build/opentelemetry-ruby-layer.zip
50+
env:
51+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5052

5153
publish-layer:
5254
uses: ./.github/workflows/layer-publish.yml

0 commit comments

Comments
 (0)