From 8a73ae05af8dcefe6e7a6879b02e3f25328b3b10 Mon Sep 17 00:00:00 2001 From: brooke Date: Sun, 4 May 2025 12:51:46 -0400 Subject: [PATCH] update --- .github/workflows/build.yml | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 765cbf7..253d291 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,10 +7,12 @@ on: jobs: build_linux_amd64: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest + permissions: + contents: write steps: - name: Clone Main Repo - uses: actions/checkout@v3 + uses: https://github.com/actions/checkout@v3 with: repository: liamcottle/reticulum-meshchat ref: main @@ -20,12 +22,12 @@ jobs: run: cd reticulum-meshchat - name: Install NodeJS - uses: actions/setup-node@v3 + uses: https://github.com/actions/setup-node@v3 with: node-version: 18 - + - name: Install Python - uses: actions/setup-python@v5 + uses: https://github.com/actions/setup-python@v5 with: python-version: "3.11" @@ -45,7 +47,7 @@ jobs: - name: Create Release id: create_release - uses: ncipollo/release-action@v1 + uses: https://github.com/ncipollo/release-action@v1 with: draft: true allowUpdates: true @@ -55,22 +57,24 @@ jobs: artifacts: "reticulum-meshchat/dist/*-amd64-linux.AppImage" build_linux_aarch64: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest + permissions: + contents: write steps: - name: Clone Main Repo - uses: actions/checkout@v3 + uses: https://github.com/actions/checkout@v3 with: repository: liamcottle/reticulum-meshchat ref: main path: reticulum-meshchat - name: Install NodeJS - uses: actions/setup-node@v3 + uses: https://github.com/actions/setup-node@v3 with: node-version: 18 - name: Install Python - uses: actions/setup-python@v5 + uses: https://github.com/actions/setup-python@v5 with: python-version: "3.11" @@ -95,7 +99,7 @@ jobs: - name: Create Release id: create_release - uses: ncipollo/release-action@v1 + uses: https://github.com/ncipollo/release-action@v1 with: draft: true allowUpdates: true