Skip to content

Commit

Permalink
Merge pull request #47 from jmlopez-rod/hotfix/0.12.1
Browse files Browse the repository at this point in the history
(hotfix) 0.12.1
  • Loading branch information
jmlopez-rod authored Feb 2, 2023
2 parents 80dcd7f + ff85b7a commit f8644a3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ The project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
## [Unreleased]

## [0.12.1] <a name="0.12.1" href="#0.12.1">-</a> February 02, 2023

- skip release to npmjs - previous job did not publish to pypi.

## [0.12.0] <a name="0.12.0" href="#0.12.0">-</a> February 01, 2023

- Using a devcontainer for local development and pipelines.
Expand Down Expand Up @@ -157,7 +161,8 @@ prs and the latest on the `master` branch.
- As a library, it facilities the creation of clis similar to m.


[unreleased]: https://github.com/jmlopez-rod/m/compare/0.12.0...HEAD
[unreleased]: https://github.com/jmlopez-rod/m/compare/0.12.1...HEAD
[0.12.1]: https://github.com/jmlopez-rod/m/compare/0.12.0...0.12.1
[0.12.0]: https://github.com/jmlopez-rod/m/compare/0.11.2...0.12.0
[0.11.2]: https://github.com/jmlopez-rod/m/compare/0.11.1...0.11.2
[0.11.1]: https://github.com/jmlopez-rod/m/compare/0.11.0...0.11.1
Expand Down
2 changes: 1 addition & 1 deletion m/m.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"owner": "jmlopez-rod",
"repo": "m",
"version": "0.12.0",
"version": "0.12.1",
"workflow": "m_flow"
}
4 changes: 2 additions & 2 deletions m/scripts/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ source m/.m/env.list
export $(cut -d= -f1 m/.m/env.list)

m/scripts/build/github.sh || m message error 'github build failure'
m/scripts/build/npmjs.sh || m message error 'npmjs build failure'
# m/scripts/build/npmjs.sh || m message error 'npmjs build failure'
m/scripts/build/pypi.sh || m message error 'pypi build failure'

# Only publish with the CI tool
Expand All @@ -26,5 +26,5 @@ npm publish .stage-github/*.tgz --tag "$npmTag"
m github release --owner "$M_OWNER" --repo "$M_REPO" --version "$M_TAG"

# Release to pypi and npmjs on releases
npm publish .stage-npmjs/*.tgz --tag "$npmTag"
python3 -m twine upload .stage-pypi/dist/*
# npm publish .stage-npmjs/*.tgz --tag "$npmTag"

0 comments on commit f8644a3

Please sign in to comment.