Skip to content

Commit 5ad5358

Browse files
authored
Release 1.92.0 (#290)
1 parent 8f13248 commit 5ad5358

4,277 files changed

Lines changed: 112965 additions & 4578 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/release.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
name: "Release Automation"
23

34
on:
@@ -25,10 +26,9 @@ jobs:
2526
- name: Checkout Code
2627
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2728
with:
28-
# PR is guaranteed merged (see job `if`), so this commit is on master.
29-
# Checking out the merge commit avoids fetching fork PR code, which
30-
# actions/checkout v7 refuses in pull_request_target workflows.
31-
ref: ${{ github.event.pull_request.merge_commit_sha }}
29+
# Safe: job runs only after the PR is merged (`merged == true` guard),
30+
# so the checked-out merge commit is already on master.
31+
allow-unsafe-pr-checkout: true
3232

3333
- name: Extract Version from PR Title
3434
env:
@@ -70,4 +70,3 @@ jobs:
7070
gh release create "$VERSION" \
7171
--title "$VERSION" \
7272
--notes-file release_notes.md
73-

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ __pycache__
99
*.egg/
1010
build/
1111
.build/
12-
_build/
12+
_build/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $ pip3 install build
2525
$ git clone https://github.com/PureStorage-OpenConnect/py-pure-client.git
2626
$ cd py-pure-client
2727
$ python3 -m build
28-
$ pip3 install dist/py_pure_client-*-py3-none-any.whl
28+
$ pip3 install dist/py_pure_client-*.whl
2929
```
3030

3131
## Documentation

0 commit comments

Comments
 (0)