We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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?
The text was updated successfully, but these errors were encountered:
@fancy45daddy did u figure it out?
Sorry, something went wrong.
No branches or pull requests
I use the code:
Now I want to release everything in out folder. But it seems to igonre all the folder in out? How to include everything?
The text was updated successfully, but these errors were encountered: