Skip to content

20241107: 1.2.0.1

20241107: 1.2.0.1 #39

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Build Windows Binaries
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: windows-latest
defaults:
run:
working-directory: ./server
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: "npm"
node-version-file: "./server/.nvmrc"
cache-dependency-path: "server/package-lock.json"
- uses: jozsefsallai/node-package-version@v1.0.4
with:
path: server/package.json
- uses: benjlevesque/short-sha@v3.0
- run: npm ci
working-directory: ./server
- run: npm run build:windows
working-directory: ./server
- name: archive
run: Compress-Archive -LiteralPath win -DestinationPath spotify97-server-win64-${{ env.PACKAGE_VERSION }}-${{ env.SHA }}.zip;dir win;dir
working-directory: ./server/dist
- uses: actions/upload-artifact@v4
with:
name: windows-binary-${{ env.SHA }}
path: server/dist/spotify97-server-win64-${{ env.PACKAGE_VERSION }}-${{ env.SHA }}.zip
upload:
runs-on: ubuntu-latest
needs: "build"
steps:
- uses: actions/checkout@v4
- uses: jozsefsallai/node-package-version@v1.0.4
with:
path: server/package.json
- uses: benjlevesque/short-sha@v3.0
- uses: actions/download-artifact@v4
with:
name: windows-binary-${{ env.SHA }}
path: .
- run: ls -la
- name: upload
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
port: ${{ secrets.PORT }}
key: ${{ secrets.KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
source: "spotify97-server-win64-${{env.PACKAGE_VERSION}}-${{ env.SHA }}.zip"
target: /srv/www/public/spotifyclient97/server/${{ env.PACKAGE_VERSION }}/${{ env.SHA }}/