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

Upload multiple files #386

Open
medoror-mo opened this issue Feb 28, 2025 · 0 comments
Open

Upload multiple files #386

medoror-mo opened this issue Feb 28, 2025 · 0 comments
Labels
enhancement New feature or request

Comments

@medoror-mo
Copy link

TL;DR

Not sure if this is a bug or a feature request but I want to use this action to upload multiple files in one go. I do NOT want to use glob because there are files of the same file type I do not want uploaded

Detailed design

I tried the following variants but nothing works with errors about "not finding" files

      - name: Upload to GCS
        uses: google-github-actions/upload-cloud-storage@v2
        with:
          path: |
             jsonfile1.json
             jsonfile2.json
          destination: ${{ env.GCS_BUCKET }}/
          parent: false
      - name: Upload to GCS
        uses: google-github-actions/upload-cloud-storage@v2
        with:
          path: |-
             jsonfile1.json
             jsonfile2.json
          destination: ${{ env.GCS_BUCKET }}/
          parent: false

Additional information

No response

@medoror-mo medoror-mo added the enhancement New feature or request label Feb 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Development

No branches or pull requests

1 participant