From 8dfe1d74db36bef4fa230a3effb2f1fc83f85d58 Mon Sep 17 00:00:00 2001 From: brooke Date: Sun, 4 May 2025 13:04:07 -0400 Subject: [PATCH] update --- .github/workflows/build.yml | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3ee5891..abad124 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,10 +12,8 @@ jobs: contents: write steps: - name: Clone Main Repo - uses: https://github.com/actions/checkout@v3 - with: - repository: github.com/liamcottle/reticulum-meshchat - path: reticulum-meshchat + run: | + git clone --depth 1 https://github.com/liamcottle/reticulum-meshchat reticulum-meshchat - name: Get Latest Tag working-directory: ./reticulum-meshchat @@ -27,12 +25,12 @@ jobs: git checkout $LATEST_TAG - name: Install NodeJS - uses: https://github.com/actions/setup-node@v3 + uses: actions/setup-node@v3 with: node-version: 18 - name: Install Python - uses: https://github.com/actions/setup-python@v5 + uses: actions/setup-python@v5 with: python-version: "3.11" @@ -52,7 +50,7 @@ jobs: - name: Create Release id: create_release - uses: https://github.com/ncipollo/release-action@v1 + uses: ncipollo/release-action@v1 with: tag: ${{ env.LATEST_TAG }} name: ${{ env.LATEST_TAG }} @@ -69,10 +67,8 @@ jobs: contents: write steps: - name: Clone Main Repo - uses: https://github.com/actions/checkout@v3 - with: - repository: github.com/liamcottle/reticulum-meshchat - path: reticulum-meshchat + run: | + git clone --depth 1 https://github.com/liamcottle/reticulum-meshchat reticulum-meshchat - name: Get Latest Tag working-directory: ./reticulum-meshchat @@ -84,12 +80,12 @@ jobs: git checkout $LATEST_TAG - name: Install NodeJS - uses: https://github.com/actions/setup-node@v3 + uses: actions/setup-node@v3 with: node-version: 18 - name: Install Python - uses: https://github.com/actions/setup-python@v5 + uses: actions/setup-python@v5 with: python-version: "3.11" @@ -114,7 +110,7 @@ jobs: - name: Create Release id: create_release - uses: https://github.com/ncipollo/release-action@v1 + uses: ncipollo/release-action@v1 with: tag: ${{ env.LATEST_TAG }} name: ${{ env.LATEST_TAG }}