11
11
- .github/**
12
12
13
13
jobs :
14
- Versioning :
15
- if : (github.event.head_commit.message != 'Update package version')
16
- runs-on : ubuntu-latest
17
- steps :
18
- - name : Checkout repo
19
- uses : actions/checkout@v4
20
- with :
21
- repository : ${{ github.event.pull_request.head.repo.full_name }}
22
- ref : ${{ github.event.pull_request.head.ref }}
23
- token : ${{ secrets.POLICYENGINE_GITHUB }}
24
- - name : Setup Python
25
- uses : actions/setup-python@v5
26
- with :
27
- python-version : 3.12
28
- - name : Build changelog
29
- run : pip install yaml-changelog && make changelog
30
- - name : Preview changelog update
31
- run : " .github/get-changelog-diff.sh"
32
- - name : Update changelog
33
- uses : EndBug/add-and-commit@v9
34
- with :
35
- add : " ."
36
- message : Update package version
14
+ Versioning :
15
+ if : (github.event.head_commit.message != 'Update package version')
16
+ runs-on : ubuntu-latest
17
+ steps :
18
+ - name : Checkout repo
19
+ uses : actions/checkout@v4
20
+ with :
21
+ repository : ${{ github.event.pull_request.head.repo.full_name }}
22
+ ref : ${{ github.event.pull_request.head.ref }}
23
+ token : ${{ secrets.POLICYENGINE_GITHUB }}
24
+ - name : Setup Python
25
+ uses : actions/setup-python@v5
26
+ with :
27
+ python-version : 3.12
28
+ - name : Build changelog
29
+ run : pip install yaml-changelog && make changelog
30
+ - name : Preview changelog update
31
+ run : " .github/get-changelog-diff.sh"
32
+ - name : Update changelog
33
+ uses : EndBug/add-and-commit@v9
34
+ with :
35
+ add : " ."
36
+ message : Update package version
37
+ Publish :
38
+ runs-on : ubuntu-latest
39
+ if : (github.event.head_commit.message == 'Update package version')
40
+ steps :
41
+ - name : Checkout repo
42
+ uses : actions/checkout@v2
43
+ - name : Setup Python
44
+ uses : actions/setup-python@v2
45
+ with :
46
+ python-version : ' 3.12'
47
+ - name : Publish a git tag
48
+ run : " .github/publish-git-tag.sh"
49
+ - name : Build package
50
+ run : make
51
+ - name : Publish a Python distribution to PyPI
52
+ uses : pypa/gh-action-pypi-publish@release/v1
53
+ with :
54
+ user : __token__
55
+ password : ${{ secrets.PYPI }}
56
+ skip_existing : true
0 commit comments