diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..aa5e791 --- /dev/null +++ b/.github/workflows/release.yml @@ -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 \ No newline at end of file diff --git a/README.md b/README.md index e968d00..a143e72 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/package.json b/package.json index bd401e7..e3c145d 100644 --- a/package.json +++ b/package.json @@ -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",