From 590566f8c4de091f0fe64bf49e4d963ded58247a Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Tue, 3 Dec 2019 22:13:37 +0300 Subject: [PATCH] ci: use new release links --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 172c966a47..09c911a2d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,7 +79,7 @@ jobs: runs-on: ubuntu-18.04 steps: - name: Download V - run: wget https://github.com/vbinaries/vbinaries/releases/download/latest/v_linux.zip && unzip v_linux.zip && ./v --version + run: wget https://github.com/vlang/v/releases/latest/download/v_linux.zip && unzip v_linux.zip && ./v --version - name: Test V run: ./v examples/hello_world.v && examples/hello_world && ./v build-examples @@ -88,7 +88,7 @@ jobs: runs-on: macOS-10.14 steps: - name: Download V - run: wget https://github.com/vbinaries/vbinaries/releases/download/latest/v_macos.zip && unzip v_macos.zip && ./v --version + run: wget https://github.com/vlang/v/releases/latest/download/v_macos.zip && unzip v_macos.zip && ./v --version - name: Test V run: ./v examples/hello_world.v && examples/hello_world && ./v build-examples