-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version and test install action
- Loading branch information
1 parent
fbab46d
commit 81d4e4e
Showing
3 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Deploy to Docassemble Playground | ||
|
||
on: | ||
push: | ||
branches: | ||
- main # Trigger the workflow on push to main branch | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install on Docassemble Server | ||
uses: SuffolkLITLab/ALActions/da_package@da-install | ||
with: | ||
SERVER_URL: ${{ secrets.SERVER_URL }} | ||
DOCASSEMBLE_DEVELOPER_API_KEY: ${{ secrets.DOCASSEMBLE_DEVELOPER_API_KEY }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '0.0.1' | ||
__version__ = '0.0.2' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ def find_package_data(where='.', package='', exclude=standard_exclude, exclude_d | |
return out | ||
|
||
setup(name='docassemble.ALLinter', | ||
version='0.0.1', | ||
version='0.0.2', | ||
description=('A docassemble extension that gives suggestions on how to improve other docassemble interviews'), | ||
long_description='# docassemble.ALLinter\r\n\r\nA docassemble extension that gives suggestions on how to improve other docassemble interviews\r\n\r\n## Author\r\n\r\nBryce Willey, [email protected]\r\n\r\n', | ||
long_description_content_type='text/markdown', | ||
|