Unverified Commit d4b1ef00 authored by kladko's avatar kladko

SKALE-2077 Fixed Naming

parent 36cfa367
...@@ -4,11 +4,11 @@ jobs: ...@@ -4,11 +4,11 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: install python 3.7 - name: install python 3.8
run: | run: |
sudo apt update; sudo apt install software-properties-common; sudo apt update; sudo apt install software-properties-common;
sudo add-apt-repository ppa:deadsnakes/ppa; sudo add-apt-repository ppa:deadsnakes/ppa;
sudo apt install python3.7; sudo apt install python3.8;
- name: Login to docker - name: Login to docker
env: env:
GITHUB_TOKEN: ${{ secrets.DOCKER_SECRET }} GITHUB_TOKEN: ${{ secrets.DOCKER_SECRET }}
...@@ -17,11 +17,11 @@ jobs: ...@@ -17,11 +17,11 @@ jobs:
- name: submodule update - name: submodule update
run: git submodule update --init --recursive run: git submodule update --init --recursive
- name: build - name: build
run: python3 scripts/docker_build.py ${GITHUB_REF##*/} DockerfileSimulation sgxwalletsim run: python3.8 scripts/docker_build.py ${GITHUB_REF##*/} DockerfileSimulation sgxwalletsim
- name: test - name: test
run: python3 scripts/docker_test.py ${GITHUB_REF##*/} DockerfileSimulation sgxwalletsim run: python3.8 scripts/docker_test.py ${GITHUB_REF##*/} DockerfileSimulation sgxwalletsim
- name: push - name: push
run: python3 scripts/docker_push.py ${GITHUB_REF##*/} DockerfileSimulation sgxwalletsim run: python3.8 scripts/docker_push.py ${GITHUB_REF##*/} DockerfileSimulation sgxwalletsim
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment