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
Readme says:
name: Bump version on: push: branches: - master jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Bump version and push tag id: tag_version uses: mathieudutour/[email protected] with: github_token: ${{ secrets.GITHUB_TOKEN }} - name: Create a GitHub release uses: ncipollo/release-action@v1 with: tag: ${{ steps.tag_version.outputs.new_tag }} name: Release ${{ steps.tag_version.outputs.new_tag }} body: ${{ steps.tag_version.outputs.changelog }}
Normally you should be able to replace ${{ secrets.GITHUB_TOKEN }} with just ${{ github.token }} like here or here
${{ secrets.GITHUB_TOKEN }}
${{ github.token }}
The text was updated successfully, but these errors were encountered:
I don't think so: #154 (comment)
Sorry, something went wrong.
No branches or pull requests
Readme says:
Usage
Normally you should be able to replace
${{ secrets.GITHUB_TOKEN }}
with just${{ github.token }}
like here or hereThe text was updated successfully, but these errors were encountered: