File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -12,15 +12,17 @@ jobs:
12
12
DRY_RUN : ${{ github.event.release.prerelease }}
13
13
anaconda_token : ${{ secrets.ANACONDA_TOKEN }}
14
14
steps :
15
- - name : Check ANACONDA_TOKEN
16
- - if : ${{ env.anaconda_token == '' }}
15
+ - name : Check if ANACONDA_TOKEN empty
16
+ if : ${{ env.anaconda_token == '' }}
17
17
run : |
18
18
echo 'ANACONDA_TOKEN does not have a value set. Exiting job.'
19
19
exit 1
20
- - if : ${{ env.anaconda_token != '' }}
20
+ - name : Check if ANACONDA_TOKEN filled
21
+ if : ${{ env.anaconda_token != '' }}
21
22
run : |
22
23
echo 'ANACONDA_TOKEN has a value set.'
23
- - uses : actions/checkout@v4
24
+ - name : Checkout repo
25
+ uses : actions/checkout@v4
24
26
- name : Set up python
25
27
uses : actions/setup-python@v2
26
28
with :
You can’t perform that action at this time.
0 commit comments