I recently developed a library to solve a problem for a project of mine which existing libraries didn’t seem to quite support. I would like to publish an alpha version, that it’s publicly available for both my other project to use it along with anyone else who can benefit from it. When I try to publish it from my repo with pio package publish I get the text “Preparing a Package” and it just hangs. I am using my github account to do this.
Things which might be relevant:
-
Using
pio home, I have authed with OAuth for GitHub. -
library.json:
{
"name": "chrispy",
"version": "0.1.0",
"description": "Library for high performance multi-channel concurrent ADC sampling/audio recording on ATMega 2560.",
"keywords": "sound, audio, music, sd, card, playback",
"description": "PCM/WAV playback direct from SD card",
"repository":
{
"type": "git",
"url": "https://github.com/JBourds/chrispy.git"
},
"license": "MIT",
"frameworks": "arduino",
"platforms": ["atmelavr"],
"dependencies": [
{ "name": "SdFat", "version": "greiman/SdFat@^2.3.1" }
],
"build": {
"libLDFMode": "deep+"
},
"authors": [
{
"name": "Jordan Bourdeau",
"email": "jordanbourdeau03@outlook.com",
"maintainer": true
}
]
}
Thanks!
