Merge branch 'SillyTavern:release' into release #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Publish Release (Release) | |
on: | |
push: | |
branches: | |
- release | |
jobs: | |
build_and_publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: npm ci | |
- name: Build and package with pkg | |
run: | | |
npm install -g pkg | |
npm run pkg | |
- name: Upload binaries to release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: dist/* | |
tag_name: ci-release | |
name: Continuous Release (Release) | |
prerelease: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |