Skip to content

Commit

Permalink
make pipeline work
Browse files Browse the repository at this point in the history
  • Loading branch information
olinux committed Jun 29, 2023
1 parent e5856eb commit 72d130a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: actions/checkout@v3
with:
ref: main
path: upload
path: ../upload
token: ${{ secrets.GITHUB_TOKEN }}

- name: Run build
Expand Down
2 changes: 1 addition & 1 deletion pipeline/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def find_schemas(self, version:str) -> List[str]:
class GitPusher(object):

def __init__(self):
self.upload_dir = "upload"
self.upload_dir = "../upload"
self._repo = Repo(self.upload_dir)

def upload(self, version):
Expand Down

0 comments on commit 72d130a

Please sign in to comment.