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: |