File tree Expand file tree Collapse file tree 1 file changed +17
-18
lines changed Expand file tree Collapse file tree 1 file changed +17
-18
lines changed Original file line number Diff line number Diff line change @@ -13,26 +13,25 @@ jobs:
13
13
name : pypi-nightly
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - name : Checkout
17
- uses : actions/checkout@v3
18
-
19
- - name : List recent changes
20
- id : list-commits
21
- run : |
22
- recentCommits=$(git log --since=yesterday --oneline)
23
- echo "commits=$recentCommits" >> "$GITHUB_OUTPUT"
16
+ - name : Checkout
17
+ uses : actions/checkout@v3
18
+
19
+ - name : List recent changes
20
+ id : list-commits
21
+ run : |
22
+ recentCommits=$(git log --since=yesterday --oneline)
23
+ echo "commits=$recentCommits" >> "$GITHUB_OUTPUT"
24
24
25
- - name : Show commits
26
- run : |
27
- echo "commits=${{ steps.list-commits.outputs.commits }}"
25
+ - name : Show commits
26
+ run : echo "${{ steps.list-commits.outputs.commits }}"
28
27
29
- - name : Abort release if no changes since yesterday
30
- if : steps.list-commits.outputs.commits == ''
31
-
32
-
33
- - uses : actions/setup-python@v4
34
- with :
35
- python-version : 3.x
28
+ - name : Abort release if no changes since yesterday
29
+ if : steps.list-commits.outputs.commits == ''
30
+
31
+
32
+ - uses : actions/setup-python@v4
33
+ with :
34
+ python-version : 3.x
36
35
37
36
# - name: Build Python client
38
37
# run: make package
You can’t perform that action at this time.
0 commit comments