Skip to content

Commit

Permalink
Install 1Password SDK via https in CI and Release GitHub actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfioravanti committed Sep 24, 2024
1 parent 72f1ae4 commit cfd1c4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v3

- name: Load SSH key into GitHub for 1Password Python SDK install
uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.PLOVER_1PASSWORD_PRIVATE_KEY }}

- name: Set up Python
uses: actions/setup-python@v4
with:
Expand All @@ -30,7 +25,7 @@ jobs:
- name: Install Test, Coverage, Lint, Type Checking Dependencies
run: |
python -m pip install --editable ".[test]"
python -m pip install git+ssh://git@github.com/1Password/onepassword-sdk-python.git@v0.1.1
python -m pip install git+https://git@github.com/1Password/onepassword-sdk-python.git@v0.1.1
- name: Run Linter
run: pylint plover_1password
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ jobs:
- name: Clone Repository
uses: actions/checkout@v3

- name: Load SSH key into GitHub for 1Password Python SDK install
uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.PLOVER_1PASSWORD_PRIVATE_KEY }}

- name: Set up Python
uses: actions/setup-python@v4
with:
Expand All @@ -30,7 +25,7 @@ jobs:
- name: Install Test, Coverage, Lint, Type Checking Dependencies
run: |
python -m pip install --editable ".[test]"
python -m pip install git+ssh://git@github.com/1Password/onepassword-sdk-python.git@v0.1.1
python -m pip install git+https://git@github.com/1Password/onepassword-sdk-python.git@v0.1.1
- name: Run Linter
run: pylint plover_1password
Expand Down

0 comments on commit cfd1c4e

Please sign in to comment.