Skip to content

Commit c747dbe

Browse files
author
mbarber
committed
test
1 parent 644c236 commit c747dbe

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/s3.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,15 @@ jobs:
1717
run: |
1818
curl -sSL https://install.python-poetry.org | python -
1919
20-
- name: Create and push tag on prod branch
21-
if: github.ref == 'refs/heads/test'
20+
- name: Create and push tag if on prod branch
21+
if: github.ref == 'refs/heads/prod'
2222
run: |
23+
git fetch --unshallow
2324
VERSION=$(poetry version -s)
2425
git config --local user.email "[email protected]"
2526
git config --local user.name "GitHub Action"
2627
git tag $VERSION
27-
git push origin $VERSION
28+
git push https://${{secrets.GITHUB_TOKEN}}@github.com/${{github.repository}}.git $VERSION
2829
2930
- name: Install Pandoc
3031
run: |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "openprotein_python"
33
packages = [{include = "openprotein"}]
4-
version = "0.1.2b2"
4+
version = "0.1.2"
55
description = "OpenProtein Python interface."
66
license = "MIT"
77
readme = "README.md"

0 commit comments

Comments
 (0)