Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/cdbg_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@ jobs:
run: ./bash/export.sh

- name: Upload
run: python3 -m dcpy.connectors.edm.publishing upload --product db-cdbg --acl public-read
run: dcpy lifecycle builds artifacts builds upload --product db-cdbg --acl public-read
3 changes: 1 addition & 2 deletions .github/workflows/ceqr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,4 @@ jobs:
python3 -m build_scripts.export

- name: Upload
run: |
python3 -m dcpy.connectors.edm.publishing upload --product db-ceqr --acl public-read
run: dcpy lifecycle builds artifacts builds upload --product db-ceqr --acl public-read
2 changes: 1 addition & 1 deletion .github/workflows/cpdb_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ jobs:

- name: Upload
run: |
python3 -m dcpy.connectors.edm.publishing upload --product db-cpdb --acl private --max_files 200
dcpy lifecycle builds artifacts builds upload --product db-cpdb --acl private --max_files 200
2 changes: 1 addition & 1 deletion .github/workflows/cscl_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ jobs:
run: ./bash/validate.sh

- name: Upload
run: python3 -m dcpy.connectors.edm.publishing upload --product db-cscl --acl public-read
run: dcpy lifecycle builds artifacts builds upload --product db-cscl --acl public-read
2 changes: 1 addition & 1 deletion .github/workflows/developments_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ jobs:
run: ./bash/05_export.sh

- name: Upload
run: python -m dcpy.connectors.edm.publishing upload -p db-developments -a public-read
run: dcpy lifecycle builds artifacts builds upload --product db-developments --a cl public-read
2 changes: 1 addition & 1 deletion .github/workflows/green_fast_track_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ jobs:
run: ./bash/export.sh

- name: Upload
run: python3 -m dcpy.connectors.edm.publishing upload --product db-green-fast-track --acl public-read
run: dcpy lifecycle builds artifacts builds upload --product db-green-fast-track --acl public-read
2 changes: 1 addition & 1 deletion .github/workflows/promote_to_draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:

- name: Promote Build to Draft
run: |
python3 -m dcpy.connectors.edm.publishing promote_to_draft \
dcpy lifecycle builds artifacts builds promote_to_draft \
--product ${{ inputs.product }} \
--build ${{ inputs.build }} \
${{ (inputs.draft_summary != '' && format('--draft-summary {0}', inputs.draft_summary)) || ''}} \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:

- name: Publish
run: |
python3 -m dcpy.connectors.edm.publishing publish \
dcpy lifecycle builds artifacts drafts publish \
--product ${{ inputs.product }} \
--version ${{ inputs.version }} \
${{ (inputs.draft_revision_num != '' && format('--draft-number {0}', inputs.draft_revision_num)) || ''}} \
Expand Down
2 changes: 1 addition & 1 deletion products/cbbr/04_export.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ cd ..

echo "Upload Output to DigitalOcean"

python3 -m dcpy.connectors.edm.publishing upload -p db-cbbr -a public-read
dcpy lifecycle builds artifacts builds upload -p db-cbbr -a public-read

echo "Done!"
2 changes: 1 addition & 1 deletion products/colp/colp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ case $1 in
build ) ./bash/02_build.sh ;;
qaqc ) ./bash/03_qaqc.sh ;;
export ) ./bash/04_export.sh ;;
upload ) python3 -m dcpy.connectors.edm.publishing upload -p db-colp -a public-read ;;
upload ) dcpy lifecycle builds artifacts builds upload -p db-colp -a public-read ;;
sql) sql $@ ;;
* ) echo "COMMAND \"$1\" is not found. (valid commands: dataloading|build|export|upload)" ;;
esac
2 changes: 1 addition & 1 deletion products/facilities/facdb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ max_bg_procs 5

case $1 in
init) init ;;
upload) python3 -m dcpy.connectors.edm.publishing upload -p db-facilities -a public-read ;;
upload) dcpy lifecycle builds artifacts builds upload -p db-facilities -a public-read ;;
export) ./facdb/bash/export.sh ;;
*) facdb_execute $@ ;;
esac
2 changes: 1 addition & 1 deletion products/green_fast_track/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,5 +106,5 @@ Then run the export script
### Upload

```bash
python3 -m dcpy.connectors.edm.publishing upload --product db-green-fast-track --acl public-read
dcpy lifecycle builds artifacts builds upload --product db-green-fast-track --acl public-read
```
2 changes: 1 addition & 1 deletion products/pluto/pluto_build/06_export.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,4 @@ mkdir -p qaqc && (
wait
cd ..

python3 -m dcpy.connectors.edm.publishing upload -p db-pluto -a public-read
dcpy lifecycle builds artifacts builds upload -p db-pluto -a public-read
2 changes: 1 addition & 1 deletion products/zoningtaxlots/bash/export.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ rm -rf output && mkdir -p output
)

echo "Upload outputs ..."
python3 -m dcpy.connectors.edm.publishing upload -p db-zoningtaxlots -a public-read
dcpy lifecycle builds artifacts builds upload -p db-zoningtaxlots -a public-read