Skip to content

Commit 588dbb5

Browse files
Update package version
1 parent c16ba78 commit 588dbb5

File tree

2 files changed

+43
-43
lines changed

2 files changed

+43
-43
lines changed

.github/workflows/code_changes.yaml

-20
Original file line numberDiff line numberDiff line change
@@ -49,26 +49,6 @@ jobs:
4949
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5050
BRANCH: gh-pages # The branch the action should deploy to.
5151
FOLDER: docs/book/_build/html # The folder the action should deploy.
52-
Publish:
53-
runs-on: ubuntu-latest
54-
if: (github.event.head_commit.message != 'Update package version')
55-
steps:
56-
- name: Checkout repo
57-
uses: actions/checkout@v2
58-
- name: Setup Python
59-
uses: actions/setup-python@v2
60-
with:
61-
python-version: '3.12'
62-
- name: Publish a git tag
63-
run: ".github/publish-git-tag.sh"
64-
- name: Build package
65-
run: make
66-
- name: Publish a Python distribution to PyPI
67-
uses: pypa/gh-action-pypi-publish@release/v1
68-
with:
69-
user: __token__
70-
password: ${{ secrets.PYPI }}
71-
skip_existing: true
7252
Deploy:
7353
runs-on: ubuntu-latest
7454
env:

.github/workflows/versioning.yaml

+43-23
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,46 @@ on:
1111
- .github/**
1212

1313
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

Comments
 (0)