mirror of https://github.com/Fabio286/antares.git
43 lines
920 B
YAML
43 lines
920 B
YAML
|
name: Build & release [BETA]
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- 'v[0-9]+.[0-9]+.[0-9]+-beta.[0-9]+'
|
||
|
|
||
|
env:
|
||
|
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
|
||
|
|
||
|
jobs:
|
||
|
release:
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
|
||
|
strategy:
|
||
|
matrix:
|
||
|
os: [macos-11, ubuntu-latest, windows-latest]
|
||
|
|
||
|
steps:
|
||
|
- name: Check out Git repository
|
||
|
uses: actions/checkout@v3
|
||
|
with:
|
||
|
ref: beta
|
||
|
|
||
|
- name: Install Node.js
|
||
|
uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: 16
|
||
|
|
||
|
- name: Install dependencies
|
||
|
run: npm i
|
||
|
|
||
|
- name: "Build"
|
||
|
run: npm run build
|
||
|
|
||
|
- name: Release
|
||
|
uses: ncipollo/release-action@v1
|
||
|
with:
|
||
|
artifacts: "build/*.AppImage,build/*.yml,build/*.deb,build/*.dmg,build/*.blockmap,build/*.zip,build/*.exe"
|
||
|
allowUpdates: true
|
||
|
draft: true
|
||
|
generateReleaseNotes: true
|