Skip to content

Commit

Permalink
Fixed deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Windhager committed Mar 15, 2021
1 parent 281d290 commit 492a7a6
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
name: deploy
on:
on:
push:
branches:
- master
tags:
- "v*"
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
if: contains(github.ref, 'tags')
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python 3.7
uses: actions/setup-python@v2
with:
python-version: "3.7"
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 492a7a6

Please sign in to comment.