This repository was archived by the owner on May 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (55 loc) · 1.67 KB
/
publish-pypi.yml
File metadata and controls
63 lines (55 loc) · 1.67 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Publish Python 🐍 library 📦 to PyPI
on:
release:
types: [published]
jobs:
build-n-publish:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
architecture:
- 'x64'
python-version:
- '3.8'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Make .env file
uses: SpicyPizza/create-envfile@v1.3
with:
envkey_DAITA_TOKEN: ${{ secrets.DAITA_TOKEN }}
envkey_PRESIGNED_URL: ${{ secrets.PRESIGNED_URL }}
envkey_CHECK_FILE_EXISTENCE: ${{ secrets.CHECK_FILE_EXISTENCE }}
envkey_CREATE_PRESIGNED_SINGLE_URL: ${{ secrets.CREATE_PRESIGNED_SINGLE_URL }}
envkey_UPLOAD_COMPRESSED_FILE: ${{ secrets.UPLOAD_COMPRESSED_FILE }}
envkey_UPLOAD_TASK_PROGRESS: ${{ secrets.UPLOAD_TASK_PROGRESS }}
envkey_UPLOAD_UPDATE: ${{secrets.UPLOAD_UPDATE}}
directory: ./daita
file_name: .env
fail_on_empty: true
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- name: Publish library 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}