Skip to content

Commit c46d3c2

Browse files
authored
Merge pull request #16 from computed-axial-lithography/build-package
update release.yml
2 parents 1a2ac91 + 31632a1 commit c46d3c2

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,17 @@ jobs:
1212
DRY_RUN: ${{ github.event.release.prerelease }}
1313
anaconda_token: ${{ secrets.ANACONDA_TOKEN }}
1414
steps:
15-
- name: Check ANACONDA_TOKEN
16-
- if: ${{ env.anaconda_token == '' }}
15+
- name: Check if ANACONDA_TOKEN empty
16+
if: ${{ env.anaconda_token == '' }}
1717
run: |
1818
echo 'ANACONDA_TOKEN does not have a value set. Exiting job.'
1919
exit 1
20-
- if: ${{ env.anaconda_token != '' }}
20+
- name: Check if ANACONDA_TOKEN filled
21+
if: ${{ env.anaconda_token != '' }}
2122
run: |
2223
echo 'ANACONDA_TOKEN has a value set.'
23-
- uses: actions/checkout@v4
24+
- name: Checkout repo
25+
uses: actions/checkout@v4
2426
- name: Set up python
2527
uses: actions/setup-python@v2
2628
with:

0 commit comments

Comments
 (0)