Skip to content

Commit

Permalink
chore(ci): add release notes to release notes (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmalek authored Oct 8, 2021
1 parent 019fab8 commit 2fc53af
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/release_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,10 @@ jobs:
steps:
- name: Extract tag
id: extract_tag
run: echo "::set-output name=tag::$(echo ${GITHUB_REF#refs/tags/})"
run: echo "::set-output name=tag::$(echo ${GITHUB_REF#refs/tags/v})"

- name: Print tag
run: echo "${{ steps.extract_tag.outputs.tag }}"
run: echo "v${{ steps.extract_tag.outputs.tag }}"

- name: Download all binaries stored as artifact
uses: actions/download-artifact@v2
Expand All @@ -225,7 +225,18 @@ jobs:
draft: false
prerelease: true
body: |
## ${{ steps.extract_tag.outputs.tag }}
## v${{ steps.extract_tag.outputs.tag }}
### Changelog
**TODO**
### Container images:
```
docker pull public.ecr.aws/sumologic/sumologic-otel-collector:${{ steps.extract_tag.outputs.tag }}
```
artifacts: "artifacts/*/*"
artifactErrorsFailBuild: true
replacesArtifacts: true

0 comments on commit 2fc53af

Please sign in to comment.