Skip to content

Commit 3cdf29c

Browse files
committed
add publish job
1 parent 253034f commit 3cdf29c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
python-version: 3.6 # lint with minimal version supported (3.6 in 18.04)
1919
- name: Install dependencies
2020
run: |
21+
echo "${{ github.event_name }}! ${{ github.event.action }}"
2122
python -m pip install --upgrade pip
2223
python -m pip install flake8
2324
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
@@ -201,7 +202,7 @@ jobs:
201202
name: Publication
202203
runs-on: ubuntu-18.04
203204
needs: [ e2e_docker_image, e2e_deb_18_04, e2e_deb_20_04 ]
204-
if: github.event_name == 'release' && github.event.action == 'created'
205+
if: ${{ github.event_name == 'release' && github.event.action == 'created' }}
205206
steps:
206207
- name: Download 18.04 debian artifact
207208
uses: actions/download-artifact@v2

0 commit comments

Comments
 (0)