forked from python-poetry/poetry
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automate release (python-poetry#1595)
- Loading branch information
Showing
3 changed files
with
241 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,237 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*.*.*' | ||
|
||
jobs: | ||
|
||
Linux: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Building release | ||
run: | | ||
make linux_release | ||
- name: Upload release file | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: poetry-${{ github.ref }}-linux.tar.gz | ||
path: releases/poetry-${{ github.ref }}-linux.tar.gz | ||
- name: Upload checksum file | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: poetry-${{ github.ref }}-linux.sha256sum | ||
path: releases/poetry-${{ github.ref }}-linux.sha256sum | ||
|
||
MacOS: | ||
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: "3.8" | ||
- name: Install Poetry | ||
run: | | ||
python get-poetry.py --preview -y | ||
source $HOME/.poetry/env | ||
- name: Install dependencies | ||
run: | | ||
source $HOME/.poetry/env | ||
poetry install --no-dev | ||
- name: Preparing Python executables | ||
run: | | ||
curl -L https://github.com/sdispater/python-binaries/releases/download/2.7.17/python-2.7.17.macos.tar.xz -o python-2.7.17.tar.xz | ||
curl -L https://github.com/sdispater/python-binaries/releases/download/3.4.10/python-3.4.10.macos.tar.xz -o python-3.4.10.tar.xz | ||
curl -L https://github.com/sdispater/python-binaries/releases/download/3.5.9/python-3.5.9.macos.tar.xz -o python-3.5.9.tar.xz | ||
curl -L https://github.com/sdispater/python-binaries/releases/download/3.6.8/python-3.6.8.macos.tar.xz -o python-3.6.8.tar.xz | ||
curl -L https://github.com/sdispater/python-binaries/releases/download/3.7.5/python-3.7.5.macos.tar.xz -o python-3.7.5.tar.xz | ||
curl -L https://github.com/sdispater/python-binaries/releases/download/3.8.0/python-3.8.0.macos.tar.xz -o python-3.8.0.tar.xz | ||
tar -zxf python-2.7.17.tar.xz | ||
tar -zxf python-3.4.10.tar.xz | ||
tar -zxf python-3.5.9.tar.xz | ||
tar -zxf python-3.6.8.tar.xz | ||
tar -zxf python-3.7.5.tar.xz | ||
tar -zxf python-3.8.0.tar.xz | ||
- name: Build specific release | ||
run: | | ||
poetry run python sonnet make release --ansi -P "2.7:python-2.7.17/bin/python" -P "3.4:python-3.4.10/bin/python" -P "3.5:python-3.5.9/bin/python" -P "3.6:python-3.6.8/bin/python" -P "3.7:python-3.7.5/bin/python" -P "3.8:python-3.8.0/bin/python" | ||
- name: Upload release file | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: poetry-${{ github.ref }}-darwin.tar.gz | ||
path: releases/poetry-${{ github.ref }}-darwin.tar.gz | ||
- name: Upload checksum file | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: poetry-${{ github.ref }}-darwin.sha256sum | ||
path: releases/poetry-${{ github.ref }}-darwin.sha256sum | ||
|
||
Windows: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: "3.8" | ||
- name: Install Poetry | ||
run: | | ||
python get-poetry.py --preview -y | ||
$env:Path += ";$env:Userprofile\.poetry\bin" | ||
- name: Install dependencies | ||
run: | | ||
$env:Path += ";$env:Userprofile\.poetry\bin" | ||
poetry install --no-dev | ||
- name: Preparing Python executables | ||
run: | | ||
Invoke-WebRequest https://github.com/sdispater/python-binaries/releases/download/2.7.17/python-2.7.17.windows.tar.xz -O python-2.7.17.tar.xz | ||
Invoke-WebRequest https://github.com/sdispater/python-binaries/releases/download/3.4.4/python-3.4.4.windows.tar.xz -O python-3.4.4.tar.xz | ||
Invoke-WebRequest https://github.com/sdispater/python-binaries/releases/download/3.5.4/python-3.5.4.windows.tar.xz -O python-3.5.4.tar.xz | ||
Invoke-WebRequest https://github.com/sdispater/python-binaries/releases/download/3.6.8/python-3.6.8.windows.tar.xz -O python-3.6.8.tar.xz | ||
Invoke-WebRequest https://github.com/sdispater/python-binaries/releases/download/3.7.5/python-3.7.5.windows.tar.xz -O python-3.7.5.tar.xz | ||
Invoke-WebRequest https://github.com/sdispater/python-binaries/releases/download/3.8.0/python-3.8.0.windows.tar.xz -O python-3.8.0.tar.xz | ||
7z x python-2.7.17.tar.xz | ||
7z x python-3.4.4.tar.xz | ||
7z x python-3.5.4.tar.xz | ||
7z x python-3.6.8.tar.xz | ||
7z x python-3.7.5.tar.xz | ||
7z x python-3.8.0.tar.xz | ||
7z x python-2.7.17.tar | ||
7z x python-3.4.4.tar | ||
7z x python-3.5.4.tar | ||
7z x python-3.6.8.tar | ||
7z x python-3.7.5.tar | ||
7z x python-3.8.0.tar | ||
- name: Build specific release | ||
run: | | ||
poetry run python sonnet make release --ansi -P "2.7:python-2.7.17\python.exe" -P "3.4:python-3.4.4\python.exe" -P "3.5:python-3.5.4\python.exe" -P "3.6:python-3.6.8\python.exe" -P "3.7:python-3.7.5\python.exe" -P "3.8:python-3.8.0\python.exe" | ||
- name: Upload release file | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: poetry-${{ github.ref }}-win32.tar.gz | ||
path: releases/poetry-${{ github.ref }}-win32.tar.gz | ||
- name: Upload checksum file | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: poetry-${{ github.ref }}-win32.sha256sum | ||
path: releases/poetry-${{ github.ref }}-win32.sha256sum | ||
|
||
Create Release: | ||
needs: [Linux, MacOS, Windows] | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@master | ||
- name: Download Linux release file | ||
uses: actions/download-artifact@master | ||
with: | ||
name: poetry-${{ github.ref }}-linux.tar.gz | ||
- name: Download Linux checksum file | ||
uses: actions/download-artifact@master | ||
with: | ||
name: poetry-${{ github.ref }}-linux.sha256sum | ||
- name: Download MacOS release file | ||
uses: actions/download-artifact@master | ||
with: | ||
name: poetry-${{ github.ref }}-darwin.tar.gz | ||
- name: Download MacOS checksum file | ||
uses: actions/download-artifact@master | ||
with: | ||
name: poetry-${{ github.ref }}-darwin.sha256sum | ||
- name: Download Windows release file | ||
uses: actions/download-artifact@master | ||
with: | ||
name: poetry-${{ github.ref }}-win32.tar.gz | ||
- name: Download Windows checksum file | ||
uses: actions/download-artifact@master | ||
with: | ||
name: poetry-${{ github.ref }}-win32.sha256sum | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: ${{ github.ref }} | ||
draft: false | ||
prerelease: false | ||
- name: Upload Linux release file asset | ||
id: upload-release-asset | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_name: poetry-${{ github.ref }}-linux.tar.gz | ||
asset_content_type: application/gzip | ||
- name: Upload Linux checksum file asset | ||
id: upload-release-asset | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_name: poetry-${{ github.ref }}-linux.sha256sum | ||
asset_content_type: text/pain | ||
- name: Upload MacOS release file asset | ||
id: upload-release-asset | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_name: poetry-${{ github.ref }}-darwin.tar.gz | ||
asset_content_type: application/gzip | ||
- name: Upload MacOS checksum file asset | ||
id: upload-release-asset | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_name: poetry-${{ github.ref }}-darwin.sha256sum | ||
asset_content_type: text/pain | ||
- name: Upload Windows release file asset | ||
id: upload-release-asset | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_name: poetry-${{ github.ref }}-win32.tar.gz | ||
asset_content_type: application/gzip | ||
- name: Upload Windows checksum file asset | ||
id: upload-release-asset | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_name: poetry-${{ github.ref }}-win32.sha256sum | ||
asset_content_type: text/pain | ||
- name: Install Poetry | ||
run: | | ||
python get-poetry.py --preview -y | ||
$env:Path += ";$env:Userprofile\.poetry\bin" | ||
- name: Install dependencies | ||
run: | | ||
source $HOME/.poetry/env | ||
poetry install --no-dev | ||
- name: Build project for distribution | ||
run: | | ||
source $HOME/.poetry/env | ||
poetry run poetry build | ||
- name: Publish to PyPI | ||
env: | ||
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }} | ||
run: | | ||
source $HOME/.poetry/env | ||
poetry run poetry publish |
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
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