Skip to content
This repository was archived by the owner on Sep 24, 2024. It is now read-only.

Commit 61d60ce

Browse files
authored
Merge pull request #5 from cloudfoundry/bosh-action
Update bosh-release.yml
2 parents 8085c62 + bb9ebab commit 61d60ce

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/bosh-release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,16 @@ jobs:
3535
- name: Build BOSH release tarball
3636
run: |
3737
set -euo pipefail
38-
VERSION="$(cat new_version)"
38+
VERSION=${{ steps.tag_version.outputs.new_version }}
3939
4040
bosh create-release --final --version "$VERSION" --tarball "cloudgontroller-boshrelease-$VERSION.tgz"
4141
4242
- name: Publish Release
4343
uses: softprops/action-gh-release@v1
4444
with:
45-
files: "cloudgontroller-boshrelease-*.tgz"
45+
files: ./cloudgontroller-boshrelease-*.tgz
4646
fail_on_unmatched_files: true
47-
body_path: changelog
47+
body: ${{ steps.tag_version.outputs.changelog }}
48+
tag_name: ${{ steps.tag_version.outputs.new_tag }}
4849

4950

0 commit comments

Comments
 (0)