alanwilter / acpype

OFFICIAL: AnteChamber PYthon Parser interfacE
https://alanwilter.github.io/acpype/
GNU General Public License v3.0
201 stars 46 forks source link

Commit tag on new releases #9

Closed simonbray closed 5 years ago

simonbray commented 5 years ago

Hello,

I'm writing an acpype recipe currently for conda-forge (I know you have a conda package already, but it's useful to have it in conda-forge as well.) Do you plan to make releases over time? If so, could you tag them with the relevant commit?

This would allow the conda-forge updater bot to rebuild the package automatically for new versions.

See here: https://github.com/conda-forge/staged-recipes/pull/8499. Thanks!

alanwilter commented 5 years ago

I'm forwarding to my colleague doing the conda package.

Thanks!

Alan

On Tue, 4 Jun 2019 at 13:40, Simon Bray notifications@github.com wrote:

Hello, I'm writing an acpype recipe currently for conda-forge (I know you have a conda package already, but it's useful to have it in conda-forge as well.) Do you plan to make releases over time? If so, could you tag them with the relevant commit? This would allow the conda-forge updater bot to rebuild the package automatically for new versions. See here: conda-forge/staged-recipes#8499 https://github.com/conda-forge/staged-recipes/pull/8499. Thanks!

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/alanwilter/acpype/issues/9?email_source=notifications&email_token=AA5YDSRBZJDEBXMDBQSBS5LPYZPCJA5CNFSM4HS35MOKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4GXQR3QA, or mute the thread https://github.com/notifications/unsubscribe-auth/AA5YDSXR6NFE4XHYH5TTYJDPYZPCJANCNFSM4HS35MOA .

-- Wanna help a great cause? Please: https://www.raymondnicolettrust.com/events/2019/11/1/buzzard600 And many thanks!

Alan 🚲🏊‍♂🏃‍♂🇧🇷🇫🇷🇬🇧

lkagami commented 5 years ago

Hi Simon, Please guide me with steps so that the recipe agrees as you need.
Thank you very much!!

chrisburr commented 5 years ago

To make a tag from the GitHub web interface: 1) Click the releases button in the middle of the top bar on the root of this repository 2) Click "Draft a new release" in the top right 3) Add the version number and corresponding commit then publish. The title and description fields are optional.

You can also make a tag with vanilla git commands, IIRC it's git checkout xxxxxxxxxx && git tag X.Y.Z && git push --tags. Where xxxxxxxxxx is the hash of the commit corresponding to version X.Y.Z.

lkagami commented 5 years ago

Thanks Chris! Done!