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

File pattern not matching file name when using " #440

Open
JW-CH opened this issue Apr 14, 2024 · 0 comments
Open

File pattern not matching file name when using " #440

JW-CH opened this issue Apr 14, 2024 · 0 comments

Comments

@JW-CH
Copy link

JW-CH commented Apr 14, 2024

Introduction

I was having issues with the action-gh-release@v2, I found that there were some other issues with v1 that were fixed in v2. I had to spend quite a bit of time to find that " is not allowed when having multiple conditions.

Current configuration

- name: Publish
        uses: softprops/action-gh-release@v2
        with:
          files: |
            "ImmichFrame*"
            "com.immichframe*"

Problem

Following config is not working:

files: |
    "ImmichFrame*"
    "com.immichframe*"

Fix (not use "):

files: |
    ImmichFrame*
    com.immichframe*
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

1 participant