-
Notifications
You must be signed in to change notification settings - Fork 67
Add auto-releasing and upload #74
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
Conversation
|
But I have added in f039ff6 |
|
oh sorry, it's because i'm owner |
|
So it should provider the secret id... |
yes i know, 36758f3 should fix that. I forgot that the repository is not in the organization |
|
Could you rename that to |
|
Coud you please remove this package https://github.com/yungd1plomat/AdvancedSharpAdbClient/pkgs/nuget/AdvancedSharpAdbClient/131947841 🤣 |
yep |
Shall we create an organization called |
yep we can, but my phone is broken right now and I can't do it yet because 2fa. |
|
🤣🤣🤣 |
Finally got around to doing #69
build and test:
flowchart LR subgraph Test WindowsTest(build-and-test-windows-latest) UbuntuTest(build-and-test-ubuntu-latest) MacOSTest(build-and-test-macos-latest) end Start([Start]) --> WindowsTest Start --> UbuntuTest Start --> MacOSTest WindowsTest --> IsTestSuccess{Is success?} UbuntuTest --> IsTestSuccess{Is success?} MacOSTest --> IsTestSuccess{Is success?} IsTestSuccess -->|True| PublishNuget(build-and-publish) PublishNuget --> End([End])build-and-publish:
flowchart LR Start([Start]) --> IsMain{Is main branch?} IsMain -->|True| Setup(Setup .NET Core App) Setup --> Restore(Install dependencies) Restore --> Build("Build `FullTargets` should be true") Build --> BuildNuget(Build the NuGet package) BuildNuget --> Publish(Publish to Github Packages) Publish --> Upload(Upload artifact) Upload --> End([End])