Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
tmorrell committed Nov 15, 2023
1 parent 0f87042 commit 6c43449
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 3 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/.pypi-publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Publish

on:
push:
tags:
- v*

jobs:
build-n-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
- name: Build package
run: |
python setup.py sdist bdist_wheel
- name: Publish
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.pypi_token }}
12 changes: 9 additions & 3 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,27 @@
"codeRepository": "https://github.com/caltechlibrary/ames",
"issueTracker": "https://github.com/caltechlibrary/ames/issues",
"license": "https://data.caltech.edu/license",
"version": "1.1.0",
"version": "1.1.1",
"author": [
{
"@type": "Person",
"givenName": "Thomas E",
"familyName": "Morrell",
"affiliation": "Caltech Library",
"affiliation": {
"@type": "Organization",
"name": "Caltech Library"
},
"email": "[email protected]",
"@id": "https://orcid.org/0000-0001-9266-5146"
},
{
"@type": "Person",
"givenName": "Robert",
"familyName": "Doiel",
"affiliation": "Caltech Library",
"affiliation": {
"@type": "Organization",
"name": "Caltech Library"
},
"email": "[email protected]",
"@id": "https://orcid.org/0000-0003-0900-6903"
}
Expand Down

0 comments on commit 6c43449

Please sign in to comment.