Skip to content

Commit

Permalink
fix: updated asset name
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesiarmes committed Oct 9, 2024
1 parent e85336d commit 1121d54
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/release-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,18 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
dry_run: true
changelog_increment_filename: release.md
- name: Get the module name
run: |
MODULE_PATH="${{ matrix.module }}"
MODULE_NAME="${MODULE_PATH//\//_}"
echo $MODULE_NAME
- name: Bundle the module
run: tar czf ${{ steps.bump.outputs.version }}.tar.gz ${{ matrix.module }}
run: tar czf "${MODULE_NAME}-${{ steps.bump.outputs.version }}.tar.gz" ${{ matrix.module }}
- name: Create release
uses: softprops/action-gh-release@v2
with:
body_path: release.md
tag_name: ${{ steps.bump.outputs.version }}
tag_name: ${MODULE_NAME}-${{ steps.bump.outputs.version }}
files: |
release.md
${{ steps.bump.outputs.version }}.tar.gz
${MODULE_NAME}-${{ steps.bump.outputs.version }}.tar.gz
2 changes: 0 additions & 2 deletions aptible/managed_endpoint/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,5 @@ to [Semantic Versioning][semver].

Initial release of the Aptible Managed Endpoint module.

Bump

[changelog]: https://keepachangelog.com/en/1.1.0/
[semver]: https://semver.org/spec/v2.0.0.html

0 comments on commit 1121d54

Please sign in to comment.