Skip to content

Commit

Permalink
Fix Github release artefact name.
Browse files Browse the repository at this point in the history
  • Loading branch information
haensl committed Aug 22, 2020
1 parent fb00abe commit f5d8d72
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ commands:
name: gather bundle information
command: |
npm info @haensl/rollup-plugin-local-resolve@${VERSION} > ./bundle.info
tree -s node_modules/@rollup-plugin-local-resolve/hooks >> ./bundle.info
tree -s node_modules/@haensl/rollup-plugin-local-resolve >> ./bundle.info
- store_artifacts:
path: bundle.info

Expand Down Expand Up @@ -303,4 +303,4 @@ jobs:
CHANGES=$(awk "/## ${VERSION}/,/^$/" CHANGELOG.md)
echo "Publishing release v${VERSION} to Github.\nChanges:"
echo $CHANGES
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete -n "v${VERSION}" -b "${CHANGES}" "v${VERSION}" ./haensl-hooks-${VERSION}.tgz
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete -n "v${VERSION}" -b "${CHANGES}" "v${VERSION}" ./haensl-rollup-plugin-local-resolve-${VERSION}.tgz
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.1.1
* Fix Github release artefact file name.

## 1.1.0
* [#11: Migrate to CircleCI.](https://github.com/haensl/rollup-plugin-local-resolve/issues/11)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@haensl/rollup-plugin-local-resolve",
"version": "1.1.0",
"version": "1.1.1",
"description": "Rollup plugin to resolve relative imports from local folders without stating the index file",
"main": "dist/rollup-plugin-local-resolve.cjs.js",
"module": "dist/rollup-plugin-local-resolve.es.js",
Expand Down

0 comments on commit f5d8d72

Please sign in to comment.