Skip to content

Commit

Permalink
Fix create release step
Browse files Browse the repository at this point in the history
  • Loading branch information
anuraaga authored Oct 6, 2021
1 parent 2fd127f commit 2d8f7d3
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ jobs:
SONATYPE_KEY: ${{ secrets.SONATYPE_KEY }}
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
GPG_PASSWORD: ${{ secrets.GPG_PASSWORD }}
- run: |
gh release create ${{ github.events.inputs.version }} \
--title ${{ github.events.inputs.version }}-alpha \
- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: >
gh release create ${{ github.events.inputs.version }}
--title ${{ github.events.inputs.version }}-alpha
--notes "Java Bindings for [OTLP ${{ github.events.inputs.version }}](https://github.com/open-telemetry/opentelemetry-proto/releases/tag/${{ github.events.inputs.version }})"

0 comments on commit 2d8f7d3

Please sign in to comment.