-
Notifications
You must be signed in to change notification settings - Fork 70
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
Ensure Local Packages Match MyGet Packages #132
Labels
Milestone
Comments
Merged
Can you describe how to do this on a high level? I could try to get started on it. |
Sure! We'd need a GitHub Action to:
The command below shows the latest version of each package in our current MyGet repo.
To get ALL the versions on MyGet run the below:
In PS we could parse like: (Get-Content $packageList) | ForEach-Object {
$Name, $Version = $_ -split '\|'
New-Object -TypeName psobject -Property @{
'Name' = $Name
'Version' = $Version
}
} |
mr-tz
changed the title
Ensure Local Packages Match MyGet Pacakges
Ensure Local Packages Match MyGet Packages
Dec 2, 2022
Ana06
added
💎 enhancement
It is working, but it could be better
🏃 CI
Related to CI
labels
Jun 6, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We should have a GitHub Action that compares packages in the GitHub repository to those hosted on MyGet and let us know if they differ. For example, we if remove a local package or rename one, this action should point out a conflict so we can take the appropriate actions to remedy it.
The text was updated successfully, but these errors were encountered: