-
Notifications
You must be signed in to change notification settings - Fork 3
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
Avoid having to do your own checkout in user workflows #5
Comments
Hi I just want to submit a new release inside an artifact with - uses: actions/download-artifact@v3
- name: "uploading to zenodo sandbox"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ZENODO_SANDBOX_ACCESS_TOKEN: ${{ secrets.ZENODO_SANDBOX_ACCESS_TOKEN }}
uses: zenodraft/action@0.10.0
with:
filenames: artifact/release.zip |
Thanks for the feedback. Just to clarify, the code snippet you posted works, right? Without doing the checkout I mean. Although you may need to fiddle a bit with the |
No, it does not work. It will throw an error for missing some My current workaround for the # download artifact in folder artifact/
- uses: actions/download-artifact@v3
# mv release.zip one level up
- run: |
mv ./artifact/release.zip ./ Could you consider options like the following? file_path: artifact/release.zip
file_name: release.zip My knowledge of typescript/javascript is limited; otherwise, I would try to make a pull request. |
so instead of
it would be better to have
The text was updated successfully, but these errors were encountered: