Skip to content

Merge pull request #79 from wayofdev/release-please--branches--master… #26

Merge pull request #79 from wayofdev/release-please--branches--master…

Merge pull request #79 from wayofdev/release-please--branches--master… #26

Workflow file for this run

---
# https://github.com/wayofdev/gh-actions/blob/master/.github/workflows/create-release.yml
# https://github.com/google-github-actions/release-please-action#release-types-supported
# https://github.com/googleapis/release-please/blob/main/docs/customizing.md
on: # yamllint disable-line rule:truthy
push:
branches:
- master
name: 📦 Create release
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: 🎉 Create release
uses: google-github-actions/release-please-action@v4
id: release
with:
token: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
config-file: .github/.release-please-config.json
manifest-file: .github/.release-please-manifest.json
target-branch: master
...