-
Notifications
You must be signed in to change notification settings - Fork 2
37 lines (35 loc) · 1.14 KB
/
github-actions-build.yml
File metadata and controls
37 lines (35 loc) · 1.14 KB
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
name: Build Python Package & Release to Test PyPI
on:
push:
tags:
- '*'
jobs:
build_release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install build bump2version
- name: Add build version
run: |
current_version=$(bump2version --dry-run --list minor | grep current_version | sed -r s,"^.*=",,)
bump2version --new-version ${current_version}rc$(date +%s) rc --no-tag --no-commit --verbose
- name: Build Package
run: make dist
- name: Save artifact
uses: actions/upload-artifact@v4
with:
name: iam-python-sdk-dist-${{ github.sha }}
path: dist/*
- name: Pre-release package to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/