Skip to content

Commit

Permalink
Add CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Sep 8, 2023
1 parent d9be0e7 commit a1e7e1b
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 4 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Release

on:
push:
branches:
- master

jobs:
release:
runs-on: windows-latest
env:
TOKEN: ${{ secrets.TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
cache-dependency-path: package-lock.json
- run: npm i --force
- run: npm run make
- uses: nyaa8/package-version@v1
- uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.TOKEN }}
file: "./out/make/squirrel.windows/x64/Saberfy-${{ env.PACKAGE_VERSION }} Setup.exe"
asset_name: "Saberfy_v${{ env.PACKAGE_VERSION }}.exe"
release_name: "Release v${{ env.PACKAGE_VERSION }}"
tag: "v${{ env.PACKAGE_VERSION }}"
overwrite: true
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# Saberfy (WIP)

Application to search and import your favorite tracks from Spotify to BeatSaber.
Application to search and import tracks from BeatSaver to BeatSaber.

![Saberfy preview](https://files.e1on.space/proggrams/saberfy.png)

### Features
- Find Spotify favorite tracks in BeatSaver
- Find maps by song or artist from BeatSaver
- Import map to BeatSaber
- Import maps to BeatSaber
- Map sorting
- Map preview

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "saberfy",
"productName": "Saberfy",
"version": "2.0.0",
"description": "Application to search and import your favorite tracks from Spotify to BeatSaber",
"version": "2.1.0",
"description": "Application to search and import tracks from BeatSaver to BeatSaber",
"main": ".webpack/main",
"scripts": {
"start": "electron-forge start",
Expand Down

0 comments on commit a1e7e1b

Please sign in to comment.