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
Is your feature request related to a problem? Please describe.
An option that fetching the latest version from value.
value
with: fetch-from: 'github' # default: 'brew'
Describe the solution you'd like Provide this option.
Describe alternatives you've considered N/A
Additional context A workaround for GitHub API limitation.
- name: Get the latest version id: mdbook_version run: | MDBOOK_VERSION="$(curl -fsi "https://github.com/${GITHUB_REPOSITORY}/releases/latest" | awk -F/ '/^Location:/ {print $(NF)}')" echo "::set-output name=mdbook_version::${MDBOOK_VERSION}" - name: Setup mdBook uses: peaceiris/actions-mdbook@v1 with: mdbook-version: '${{ steps.mdbook_version.outputs.mdbook_version }}'
The text was updated successfully, but these errors were encountered:
This issue is stale because it has been open 21 days with no activity. Remove stale label or comment or this will be closed in 7 days.
Sorry, something went wrong.
peaceiris
No branches or pull requests
Is your feature request related to a problem? Please describe.
An option that fetching the latest version from
value
.Describe the solution you'd like
Provide this option.
Describe alternatives you've considered
N/A
Additional context
A workaround for GitHub API limitation.
The text was updated successfully, but these errors were encountered: