Skip to content

Commit

Permalink
set releases path and ignore .bin
Browse files Browse the repository at this point in the history
  • Loading branch information
jriguera committed Mar 22, 2024
1 parent 2563451 commit e72eaac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-final-boshrelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ jobs:
id: boshrelease
run: |
bosh sync-blobs
bosh create-release --final --tarball="release.tgz"
bosh create-release --final --tarball="releases/$RELEASE.tgz"
version=$(ls releases/$RELEASE/$RELEASE-*.yml | sed 's/.*\/.*-\(.*\)\.yml$/\1/' | sort -t. -k 1,1nr -k 2,2nr | head -1)
echo "version=${version}" >> $GITHUB_OUTPUT
- name: Uploads artifact release
uses: actions/upload-artifact@v4
with:
name: boshelease
path: "release.tgz"
path: "releases/$RELEASE.tgz"

- name: Generate release notes from git commits
run: |
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ releases/**/*.tgz
.final_builds/packages/**/*.tgz
.DS_Store
.idea
.bin
*.swp
*~
*#
Expand Down

0 comments on commit e72eaac

Please sign in to comment.