File: .releaserc

package info (click to toggle)
python-googlemaps 4.10.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 472 kB
  • sloc: python: 2,822; xml: 847; makefile: 5
file content (23 lines) | stat: -rw-r--r-- 730 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
branches:
  - master
plugins:
  - "@semantic-release/commit-analyzer"
  - "@semantic-release/release-notes-generator"
  - - "@google/semantic-release-replace-plugin"
    - replacements:
        - files:
            - "./googlemaps/__init__.py"
          from: "__version__ = \".*\""
          to: "__version__ = \"${nextRelease.version}\""
        - files:
            - "./setup.py"
          from: 'version=".*"'
          to: 'version="${nextRelease.version}"'
  - [ "@semantic-release/exec", { publishCmd: "python3 setup.py sdist && python3 -m twine upload dist/*" }]
  - - "@semantic-release/git"
    - assets:
        - "./googlemaps/__init__.py"
        - "./setup.py"
  - "@semantic-release/github"
options:
  debug: true