Skip to content

Commit

Permalink
CST-10 znick#336 use python2 instead of 3
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhailyumanov committed Mar 18, 2021
1 parent 29606f0 commit f6e7bc4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/deploy_local_beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Deploy
run: source deploy_local_beta/run.sh
run: |
chmod +x deploy_local_beta/run.sh
source deploy_local_beta/run.sh --python-path=python2

0 comments on commit f6e7bc4

Please sign in to comment.