Skip to content
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

No assets found in release. #740

Closed
MrVauxs opened this issue Jun 22, 2024 · 3 comments
Closed

No assets found in release. #740

MrVauxs opened this issue Jun 22, 2024 · 3 comments

Comments

@MrVauxs
Copy link

MrVauxs commented Jun 22, 2024

Describe the bug No assets found in release.

To Reproduce
I have the following action in a private repository:

name: Release Creation

on:
  release:
    types: [published]

permissions:
  contents: read

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
        
      - name: Download release asset file
        id: release_data
        uses: robinraju/release-downloader@v1.10
        with: 
          token: ${{ secrets.MY_TOKEN }} # Attempted with default (nothing), explicitly using GITHUB_TOKEN, and my own token.
          latest: true
          zipBall: true

Expected behavior
The tarball zip being downloaded.

Screenshots
chrome_ob34EDpVHw

@robinraju
Copy link
Owner

Looks like #701 The fix for it is available on main but I haven't released a new version after that.

can you try

- uses: robinraju/release-downloader@cb096d8fa1fcb0e897f30b1c571f07e2c8e12479
  with:
    repository: "owner/repo"
    latest: true
    tarBall: true
    zipBall: true

I'll release a new version soon

@MrVauxs
Copy link
Author

MrVauxs commented Jun 23, 2024

It works. Close this please when you do release the new version.

@robinraju
Copy link
Owner

@MrVauxs A new version is available now.

- uses: robinraju/release-downloader@v1.11
  with:
    repository: "owner/repo"
    latest: true
    tarBall: true
    zipBall: true

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants