Files
reticulum-meshchatX/.github/workflows/build.yml
2024-05-28 23:27:50 +12:00

46 lines
1.0 KiB
YAML

name: Build and Release
on:
workflow_dispatch:
jobs:
release:
runs-on: windows-latest
permissions:
contents: write
steps:
- name: Clone Repo
uses: actions/checkout@v1
- name: Install NodeJS
uses: actions/setup-node@v1
with:
node-version: 18
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Python Deps
run: pip install -r requirements.txt
- name: Install NodeJS Deps
run: npm install
- name: Build Electron App
run: npm run dist
- name: Get Tag
id: get_tag
if: startsWith(github.ref, 'refs/tags/')
run: |
echo ${GITHUB_REF/refs\/tags\//}
echo ::set-output name=TAG::${GITHUB_REF/refs\/tags\//}
- name: Create Release
id: create_release
uses: ncipollo/release-action@v1
with:
artifacts: "dist/*-win-installer.exe,dist/*-win-portable.exe"