-
Notifications
You must be signed in to change notification settings - Fork 739
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
Way to fetch the latest version of some artifact #52
Comments
An artifact is not a release and should not be used as such, as it is strongly bound to the context of the workflow in which it was produced. For releases GitHub offers "Releases" and/or "Packages", depending on your needs. Both have their own actions and I think you will have a much easier time publish your pdf file that way. |
Releases require tags, which can become messy. If AppVeyor can provide this basic feature I don't see why GitHub Actions can't. |
We (ispc project) need a link to the latest build on our README page. It seems to be pretty common usage pattern. This feature is the main reason we keep using Appveyor. Would be good if upload-artifact, would support aliases like this: - name: Upload package
uses: actions/upload-artifact@v2
with:
name: my_build
job_alias: latest <-- note this
path: my_build.tar.xz So the result would be available as |
Even if |
@JayFoxRox Thanks for point out to #51. |
Any updates on this? |
You may want to look at |
Any context for why this was closed @noisypigeon ? |
Oops, I was doing a clean up of old issues and didn't mean to close this one. Thanks for pointing it out. |
@noisypigeon any chance you can pin this? |
I am not an admin/github employee, just a user. :) |
Workaround: baz-ga/Edirom-Online#8 (comment) |
Hey there! I am opening a new issue as requested by @joshmgross. It would be incredibly helpful to have some way to fetch the latest version of an artifact.
For example, in my use case, I am using LaTeX for my resume and GitHub Actions to compile and create the PDF. It would be incredibly helpful to have a URL that fetches the most recent version. As mentioned in that thread, there is a workaround by pushing it to a release, which I will be using in the meantime but this would be a much more elegant solution.
Thanks!
The text was updated successfully, but these errors were encountered: