Skip to content

Merge pull request #104 from bmsuseluda/feat/ryujinxAutoConfig #76

Merge pull request #104 from bmsuseluda/feat/ryujinxAutoConfig

Merge pull request #104 from bmsuseluda/feat/ryujinxAutoConfig #76

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
release_linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install dependencies
run: yarn
- name: Build
run: yarn app:distLinux --publish=always
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
GH_TOKEN: ${{ secrets.RELEASE_TOKEN }}
release_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install dependencies
run: yarn
- name: Build
run: yarn app:distWindows --publish=always
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
GH_TOKEN: ${{ secrets.RELEASE_TOKEN }}