# How to auto release using GitHub Actions as well **Published by:** [tomokisun.eth](https://paragraph.com/@tomokisun/) **Published on:** 2023-05-16 **URL:** https://paragraph.com/@tomokisun/how-to-auto-release-using-github-actions-as-well ## Content name: Releases on: workflow_dispatch: inputs: version: type: string required: true jobs: release: name: Manual Version Up runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ github.event.inputs.version }} release_name: ${{ github.event.inputs.version }} draft: false prerelease: false ❌ Resource not accessible by integration The problem was solved by changing the Settings > Actions > General > Workflow permissions for the repository in question from Read repository contents permission to Read and write permissions ## Publication Information - [tomokisun.eth](https://paragraph.com/@tomokisun/): Publication homepage - [All Posts](https://paragraph.com/@tomokisun/): More posts from this publication - [RSS Feed](https://api.paragraph.com/blogs/rss/@tomokisun): Subscribe to updates - [Twitter](https://twitter.com/tomoki_sun): Follow on Twitter