File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -110,8 +110,12 @@ jobs:
110
110
aws-region : ${{ secrets.AWS_REGION }}
111
111
- if : github.event_name == 'push' && github.ref == 'refs/heads/main' && matrix.package_name == 'rsconnect_python'
112
112
run : make sync-latest-to-s3
113
+ env :
114
+ BDIST_WHEEL : ${{ steps.create_dist.outputs.whl }}
113
115
- if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags') && matrix.package_name == 'rsconnect_python'
114
116
run : make sync-to-s3
117
+ env :
118
+ BDIST_WHEEL : ${{ steps.create_dist.outputs.whl }}
115
119
- if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
116
120
uses : pypa/gh-action-pypi-publish@release/v1
117
121
with :
Original file line number Diff line number Diff line change @@ -114,7 +114,6 @@ version:
114
114
dist :
115
115
./scripts/temporary-rename
116
116
pip wheel --no-deps -w dist .
117
- ls -lha dist/
118
117
twine check $(BDIST_WHEEL )
119
118
rm -vf dist/* .egg
120
119
@echo " ::set-output name=whl::$( BDIST_WHEEL) "
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ write_to = "rsconnect/version.py"
81
81
# since we dirty the state by transforming the file
82
82
# keep the version number consistent
83
83
version_scheme = " no-guess-dev"
84
- local_scheme = " node-and-date "
84
+ local_scheme = " no-local-version "
85
85
86
86
[tool .setuptools .package-data ]
87
87
rsconnect = [" py.typed" ]
You can’t perform that action at this time.
0 commit comments