Merge pull request #1 from AbsaOSS/Release/1.3.0 #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: [ master ] | |
env: | |
LC_ALL: C.UTF-8 | |
LANG: C.UTF-8 | |
jobs: | |
publish: | |
environment: jfrog | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout Rialto | |
uses: actions/checkout@v3 | |
- name: Install system dependencies | |
run: | | |
apt-get update | |
apt-get install -y openssl libssl-dev wget | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10.6" | |
- name: Setup Poetry | |
uses: abatilo/[email protected] | |
with: | |
poetry-version: 1.5.1 | |
- name: Install dependencies | |
run: | | |
poetry install | |
- name: Build and publish the wheel to jfrog | |
run: | | |
poetry build | |
# poetry publish |