Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Please add tags #652

Open
guimard opened this issue Mar 27, 2019 · 4 comments
Open

Please add tags #652

guimard opened this issue Mar 27, 2019 · 4 comments
Labels

Comments

@guimard
Copy link

guimard commented Mar 27, 2019

Hello,
last update tags are missing in your repo (6.0.1, 6.0.2). It is not easy for packager to follow your changes. Could you add them ?

Cheers,
Xavier

@kapouer
Copy link

kapouer commented Jun 14, 2020

@peterbraden please add 7.0.0 tag as well !
BTW this is what i do to bump a new version on a clean git repo:

#!/bin/sh
version=$1
nothing=`git status -s`
if [ ! -z "$nothing" ]; then git stash -u ; fi
npm version $version -m "Version %s" --allow-same-version
git push && git push --tags
npm publish
if [ ! -z "$nothing" ]; then git stash apply; fi

@kapouer
Copy link

kapouer commented Jun 14, 2020

cd myopensourcenpmmodule
npmp 1.2.3

@peterbraden
Copy link
Owner

peterbraden commented Jun 15, 2020

Can someone add a PR to add a github job to do this automatically?

@peterbraden peterbraden reopened this Jun 15, 2020
@kapouer
Copy link

kapouer commented Jun 15, 2020

No idea how to do this.
Meanwhile it would be great to just get the tag (it's blocking things here in debian).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants