-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update code.json to include both dev and official versions (#165)
* update code.json to include both dev and official versions * switch master to main
- Loading branch information
Showing
8 changed files
with
59 additions
and
16 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
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 |
---|---|---|
|
@@ -28,11 +28,11 @@ jobs: | |
echo $REF | ||
echo $EVENT_NAME | ||
echo ${{ github.event_name == 'push' }} | ||
echo ${{ github.ref == 'refs/heads/master' }} | ||
echo ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | ||
echo ${{ github.ref == 'refs/heads/main' }} | ||
echo ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | ||
- name: Deploy to GitHub Pages | ||
uses: JamesIves/[email protected] | ||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | ||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
EVENT_NAME: ${{ github.event_name }} | ||
|
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
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 |
---|---|---|
|
@@ -3,9 +3,52 @@ | |
"name": "dataretrieval", | ||
"organization": "U.S. Geological Survey", | ||
"description": "A Python package for discovering and retrieving water data from U.S. federal hydrologic web services.", | ||
"version": "v1.0.2", | ||
"version": "main", | ||
"status": "Development", | ||
|
||
"permissions": { | ||
"usageType": "openSource", | ||
"licenses": [ | ||
{ | ||
"name": "Public Domain, CC0-1.0", | ||
"URL": "https://code.usgs.gov/water/dataretrieval-python/-/raw/main/LICENSE.md" | ||
} | ||
] | ||
}, | ||
|
||
"homepageURL": "https://code.usgs.gov/water/dataretrieval-python", | ||
"downloadURL": "https://code.usgs.gov/water/dataretrieval-python/-/archive/main/dataretrieval-python-main.zip", | ||
"disclaimerURL": "https://code.usgs.gov/water/dataretrieval-python/-/raw/main/DISCLAIMER.md", | ||
"repositoryURL": "https://code.usgs.gov/water/dataretrieval-python.git", | ||
"vcs": "git", | ||
|
||
"laborHours": 0, | ||
|
||
"tags": [ | ||
"Python", | ||
"USGS" | ||
], | ||
|
||
"languages": [ | ||
"Python" | ||
], | ||
|
||
"contact": { | ||
"name": "Timothy 0. Hodson", | ||
"email": "[email protected]" | ||
}, | ||
|
||
"date": { | ||
"metadataLastUpdated": "2024-09-17" | ||
} | ||
}, | ||
{ | ||
"name": "dataretrieval", | ||
"organization": "U.S. Geological Survey", | ||
"description": "A Python package for discovering and retrieving water data from U.S. federal hydrologic web services.", | ||
"version": "v1.0.2", | ||
"status": "Production", | ||
|
||
"permissions": { | ||
"usageType": "openSource", | ||
"licenses": [ | ||
|
@@ -39,7 +82,7 @@ | |
}, | ||
|
||
"date": { | ||
"metadataLastUpdated": "2022-02-13" | ||
"metadataLastUpdated": "2024-08-30" | ||
} | ||
} | ||
] |
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
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
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
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