mirror of
https://github.com/cupcakearmy/unpixel.git
synced 2024-11-01 09:24:11 +01:00
30 lines
605 B
YAML
30 lines
605 B
YAML
|
name: Main
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- 'v*.*.*'
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
- uses: actions/setup-node@v2
|
||
|
with:
|
||
|
node-version: '14'
|
||
|
- run: yarn install --frozen-lockfile
|
||
|
- name: Build
|
||
|
run: yarn run dist
|
||
|
- run: ls out
|
||
|
- name: Create release
|
||
|
uses: softprops/action-gh-release@v0.1.5
|
||
|
with:
|
||
|
files: |
|
||
|
*.dmg
|
||
|
*.exe
|
||
|
*.snap
|
||
|
*.AppImage
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|