Merge pull request #739 from wayofdev/feat/infra-dx #565
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# 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: googleapis/[email protected] | |
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 | |
... |