From 1c114a3dd1b0ac9ed5cb9eceac16a70e57772724 Mon Sep 17 00:00:00 2001 From: aggarwalakshun Date: Tue, 11 Feb 2025 15:35:15 +0530 Subject: [PATCH] add correct url --- .gitea/workflows/build.yml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 45ade48..3ec5dbb 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -18,14 +18,16 @@ jobs: - name: Install Node.js run: | pacman -Syu --noconfirm - pacman -S --noconfirm nodejs npm + pacman -S --noconfirm nodejs npm git - name: Checkout code - uses: actions/checkout@v3 + run: | + git clone https://akshun-git.duckdns.org/aggarwalakshun/setup-script.git . + git checkout $GITEA_SHA - name: Install dependencies run: | - pacman -S --noconfirm git python python-pip binutils + pacman -S --noconfirm python python-pip binutils - name: Check for changes run: | @@ -59,14 +61,16 @@ jobs: - name: Install Node.js run: | apt update && apt upgrade -y - apt install -y nodejs npm + apt install -y nodejs npm git - name: Checkout code - uses: actions/checkout@v3 + run: | + git clone https://akshun-git.duckdns.org/aggarwalakshun/setup-script.git . + git checkout $GITEA_SHA - name: Install dependencies run: | - apt install -y git python3 python3-pip binutils + apt install -y python3 python3-pip binutils - name: Check for changes run: | @@ -99,14 +103,16 @@ jobs: - name: Install Node.js run: | dnf up -y - dnf install -y nodejs npm + dnf install -y nodejs npm git - name: Checkout code - uses: actions/checkout@v3 + run: | + git clone https://akshun-git.duckdns.org/aggarwalakshun/setup-script.git . + git checkout $GITEA_SHA - name: Install dependencies run: | - dnf install -y git python python-pip binutils + dnf install -y python python-pip binutils - name: Check for changes run: |