-
Notifications
You must be signed in to change notification settings - Fork 40
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
ci: build extension for each PR #1110
Conversation
🤖 Pull request artifacts
|
Isn't committing to the branch a bad idea regarding merge conflicts and pushing from and un-updated localhost? I thought it would be enough to upload as an artifact to GH Actions and link to that. |
The commits are made on a specific branch https://github.com/prisma/language-tools/tree/artifacts/pull-request-artifacts So should be safe from merge conflicts, but we might need to force delete and clean it up once in a while if it takes too much space. The upload artifact thing is a no go, it's very hard to get a URL to it and expires after 90days. (uploading to the action run) The other alternative is to create a release and add the artifact there. |
Ahh, I did not pick up that the commit was on another branch. Neat! |
Related #1005