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

how to release everything in a folder #461

Open
fancy45daddy opened this issue Jun 15, 2024 · 0 comments
Open

how to release everything in a folder #461

fancy45daddy opened this issue Jun 15, 2024 · 0 comments

Comments

@fancy45daddy
Copy link

I use the code:

on: push

jobs:
    build:
        runs-on: ubuntu-latest
        permissions:
            contents: write
        steps:
        - run: |
              version=22.3.0
              curl https://nodejs.org/dist/v$version/node-v$version.tar.gz | tar -xz
              cd node-v$version
              ./configure --partly-static --prefix out
              make -j2
              make install
              ls -al out
        - uses: softprops/action-gh-release@master
          with:
              token: ${{secrets.GITHUB_TOKEN}}
              tag_name: 1
              files: out/*

Now I want to release everything in out folder. But it seems to igonre all the folder in out? How to include everything?

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