Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,10 @@ jobs:
- name: Test
run: |
make test
- name: Build
run: |
python setup.py sdist bdist_wheel
- name: Publish
run: |
aws codeartifact login --tool twine --repository dev-arvi --domain nextdoor --domain-owner 364942603424 --region us-west-2 && twine upload --repository dev-arvi dist/*

2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ test: venv
install:
python setup.py install

upload:

###############################################################################
# Development Environment Setup
###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion code_crypt/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
# Copyright 2017 Nextdoor.com, Inc


__version__ = "0.1.5"
__version__ = "0.1.9_test"
__desc__ = "Code Crypt"
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
boto3>=1.17.106,<2.0.0
cryptography>=36.0.2 # ugh... they use major versions mainly now
twine==6.1.0
awscli==1.38.17
Loading