-
Notifications
You must be signed in to change notification settings - Fork 12
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
Upload get stuck forever #12
Comments
@patrickelectric There are too many files to upload in your workflow and they exceed the API rate limit of one token. jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: macos-latest
DEPLOY_PATH: pingviewer-Release.dmg
- os: ubuntu-latest
DEPLOY_PATH: pingviewer-Release.AppImage
- os: windows-latest
DEPLOY_PATH: deploy # This is a directory and it has many files.
- name: Update continuous release
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: continuous
file: ${{ matrix.DEPLOY_PATH }} # Try to upload the "deploy" directory with too many files
tags: false
overwrite: true
prerelease: true
verbose: true Maybe it's better to archive the |
Thanks, I was able to fixed that creating the zip file.
That's happening almost every time when something get merged. |
@patrickelectric Could you provide a log link without signature? The link upper is expired. I searched for |
more than 15 minutes trying to upload, got stuck, broke all others builds.
https://github.com/patrickelectric/ping-components/runs/1517505545?check_suite_focus=true
The text was updated successfully, but these errors were encountered: