FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-language-server/.github/workflows/release.yml at develop · palantir/python-language-server · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
palantir
/
python-language-server
Public
Notifications
You must be signed in to change notification settings
Fork
294
Star
2.7k
Code
Issues
161
Pull requests
27
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
python-language-server
/
.github
/
workflows
/
release.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
44 lines (41 loc) · 1.2 KB
Breadcrumbs
python-language-server
/
.github
/
workflows
/
release.yml
Copy path
File metadata and controls
44 lines (41 loc) · 1.2 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
name
:
PyLS Release
on
:
release
:
types
:
-
created
jobs
:
build
:
name
:
Linux Py${{ matrix.PYTHON_VERSION }}
runs-on
:
ubuntu-latest
env
:
CI
:
'
true
'
OS
:
'
linux
'
PYTHON_VERSION
:
${{ matrix.PYTHON_VERSION }}
strategy
:
fail-fast
:
false
matrix
:
PYTHON_VERSION
:
['3.8']
timeout-minutes
:
10
steps
:
-
uses
:
actions/cache@v1
with
:
path
:
~/.cache/pip
key
:
${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-${{ hashFiles('setup.py') }}
restore-keys
:
${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-
-
uses
:
actions/checkout@v2
with
:
fetch-depth
:
0
-
uses
:
actions/setup-python@v2
with
:
python-version
:
${{ matrix.PYTHON_VERSION }}
architecture
:
'
x64
'
-
run
:
python -m pip install --upgrade pip setuptools wheel twine
-
name
:
Build and publish python-language-server
env
:
TWINE_USERNAME
:
__token__
TWINE_PASSWORD
:
${{ secrets.PYPI_PYLS_TOKEN }}
run
:
|
python setup.py bdist_wheel --universal
python setup.py sdist
python -m twine check dist/*
python -m twine upload dist/*
Back
|
FazBrowse Home
|
New Git URL