update
This commit is contained in:
parent
aff8dae589
commit
8a73ae05af
1 changed files with 15 additions and 11 deletions
24
.github/workflows/build.yml
vendored
24
.github/workflows/build.yml
vendored
|
@ -7,10 +7,12 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_linux_amd64:
|
build_linux_amd64:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
- name: Clone Main Repo
|
- name: Clone Main Repo
|
||||||
uses: actions/checkout@v3
|
uses: https://github.com/actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: liamcottle/reticulum-meshchat
|
repository: liamcottle/reticulum-meshchat
|
||||||
ref: main
|
ref: main
|
||||||
|
@ -20,12 +22,12 @@ jobs:
|
||||||
run: cd reticulum-meshchat
|
run: cd reticulum-meshchat
|
||||||
|
|
||||||
- name: Install NodeJS
|
- name: Install NodeJS
|
||||||
uses: actions/setup-node@v3
|
uses: https://github.com/actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 18
|
node-version: 18
|
||||||
|
|
||||||
- name: Install Python
|
- name: Install Python
|
||||||
uses: actions/setup-python@v5
|
uses: https://github.com/actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: "3.11"
|
python-version: "3.11"
|
||||||
|
|
||||||
|
@ -45,7 +47,7 @@ jobs:
|
||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: ncipollo/release-action@v1
|
uses: https://github.com/ncipollo/release-action@v1
|
||||||
with:
|
with:
|
||||||
draft: true
|
draft: true
|
||||||
allowUpdates: true
|
allowUpdates: true
|
||||||
|
@ -55,22 +57,24 @@ jobs:
|
||||||
artifacts: "reticulum-meshchat/dist/*-amd64-linux.AppImage"
|
artifacts: "reticulum-meshchat/dist/*-amd64-linux.AppImage"
|
||||||
|
|
||||||
build_linux_aarch64:
|
build_linux_aarch64:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
- name: Clone Main Repo
|
- name: Clone Main Repo
|
||||||
uses: actions/checkout@v3
|
uses: https://github.com/actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: liamcottle/reticulum-meshchat
|
repository: liamcottle/reticulum-meshchat
|
||||||
ref: main
|
ref: main
|
||||||
path: reticulum-meshchat
|
path: reticulum-meshchat
|
||||||
|
|
||||||
- name: Install NodeJS
|
- name: Install NodeJS
|
||||||
uses: actions/setup-node@v3
|
uses: https://github.com/actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 18
|
node-version: 18
|
||||||
|
|
||||||
- name: Install Python
|
- name: Install Python
|
||||||
uses: actions/setup-python@v5
|
uses: https://github.com/actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: "3.11"
|
python-version: "3.11"
|
||||||
|
|
||||||
|
@ -95,7 +99,7 @@ jobs:
|
||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: ncipollo/release-action@v1
|
uses: https://github.com/ncipollo/release-action@v1
|
||||||
with:
|
with:
|
||||||
draft: true
|
draft: true
|
||||||
allowUpdates: true
|
allowUpdates: true
|
||||||
|
|
Loading…
Add table
Reference in a new issue