update
This commit is contained in:
parent
b37363e9c9
commit
8dfe1d74db
1 changed files with 10 additions and 14 deletions
24
.github/workflows/build.yml
vendored
24
.github/workflows/build.yml
vendored
|
@ -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 }}
|
||||
|
|
Loading…
Add table
Reference in a new issue