Skip to content

Commit b26ac59

Browse files
committed
show me what it's for
1 parent 27bb284 commit b26ac59

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,12 @@ jobs:
110110
aws-region: ${{ secrets.AWS_REGION }}
111111
- if: github.event_name == 'push' && github.ref == 'refs/heads/main' && matrix.package_name == 'rsconnect_python'
112112
run: make sync-latest-to-s3
113+
env:
114+
BDIST_WHEEL: ${{ steps.create_dist.outputs.whl }}
113115
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') && matrix.package_name == 'rsconnect_python'
114116
run: make sync-to-s3
117+
env:
118+
BDIST_WHEEL: ${{ steps.create_dist.outputs.whl }}
115119
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
116120
uses: pypa/gh-action-pypi-publish@release/v1
117121
with:

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ version:
114114
dist:
115115
./scripts/temporary-rename
116116
pip wheel --no-deps -w dist .
117-
ls -lha dist/
118117
twine check $(BDIST_WHEEL)
119118
rm -vf dist/*.egg
120119
@echo "::set-output name=whl::$(BDIST_WHEEL)"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ write_to = "rsconnect/version.py"
8181
# since we dirty the state by transforming the file
8282
# keep the version number consistent
8383
version_scheme = "no-guess-dev"
84-
local_scheme = "node-and-date"
84+
local_scheme = "no-local-version"
8585

8686
[tool.setuptools.package-data]
8787
rsconnect = ["py.typed"]

0 commit comments

Comments
 (0)