-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
82 additions
and
61 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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
diff a/.github/workflows/release.yaml b/.github/workflows/release.yaml (rejected hunks) | ||
@@ -1,23 +1,30 @@ | ||
name: Release | ||
+ | ||
on: | ||
release: | ||
types: [published] | ||
+ | ||
+permissions: | ||
+ contents: read | ||
+ | ||
jobs: | ||
pip: | ||
- runs-on: ubuntu-18.04 | ||
+ runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- - name: Set up Python 3.8 | ||
- uses: actions/setup-python@v3 | ||
+ - uses: actions/setup-python@v3 | ||
with: | ||
python-version: 3.8 | ||
- - name: Build packages | ||
+ - name: Install | ||
run: | | ||
- pip install -U pip | ||
- pip install -U build setuptools>=58.2 | ||
- python -m build --sdist --wheel --outdir dist/ | ||
+ pip install -U-upgrade pip wheel | ||
+ pip install build twine | ||
+ - name: Build | ||
+ run: | | ||
+ python -m build | ||
+ twine check dist/* | ||
- name: Publish packages to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff a/dvc_ssh/tests/test_dvc.py b/dvc_ssh/tests/test_dvc.py (rejected hunks) | ||
@@ -51,12 +51,10 @@ class TestAdd(_TestAdd): | ||
def hash_name(self): | ||
raise NotImplementedError | ||
|
||
- | ||
@pytest.fixture | ||
def hash_value(self): | ||
raise NotImplementedError | ||
|
||
- | ||
@pytest.fixture | ||
def dir_hash_value(self): | ||
raise NotImplementedError |
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