forked from aws-powertools/powertools-lambda-python
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (50 loc) · 1.67 KB
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Publish to PyPi
# only build & publish to PyPi once release notes are published
# this ensures we have release notes correctly, tags, changelog, etc.
on:
release:
types: [published]
jobs:
upload:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: "3.8"
- name: Set release notes tag
run: |
export RELEASE_TAG_VERSION=${{ github.event.release.tag_name }}
echo ::set-env name=RELEASE_TAG_VERSION::${RELEASE_TAG_VERSION:1}
- name: Ensure new version is also set in pyproject and CHANGELOG
run: |
grep ${RELEASE_TAG_VERSION} CHANGELOG.md
grep ${RELEASE_TAG_VERSION} pyproject.toml
- name: Install dependencies
run: make dev
- name: Run all tests, linting and baselines
run: make pr
- name: Build python package and wheel
run: poetry build
- name: Upload to PyPi test
run: make release-test
env:
PYPI_USERNAME: __token__
PYPI_TOKEN: ${{ secrets.PYPI_TEST_TOKEN }}
- name: Upload to PyPi prod
run: make release-prod
env:
TWINE_USERNAME: __token__
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
sync_master:
needs: upload
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Sync master from detached head
# If version matches CHANGELOG and pyproject.toml
# If it passes all checks, successfully releases to test and prod
# Then sync up master with latest source code release
# where commit message will be Release notes title
run: git push origin HEAD:refs/heads/master --force