Skip to content

Merge pull request #171 from ctrlaltdavid/fix/disable-webgpu #125

Merge pull request #171 from ctrlaltdavid/fix/disable-webgpu

Merge pull request #171 from ctrlaltdavid/fix/disable-webgpu #125

Workflow file for this run

# Automatically deploy the latest changes to the FTP server.
on:
# Triggers the workflow on push events but only for the "master" branch.
push:
branches: [ "master" ]
# Allows this workflow to be run manually from the Actions tab.
workflow_dispatch:
name: 🚀 Auto-Deploy
jobs:
web-deploy:
name: 🎉 Deploy
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v2
- uses: actions/setup-node@master
with:
node-version: 16.x
- name: 📥 Install project dependencies
run: npm install
- name: ⚒️ Build the project
run: npm run build
- name: 📂 Sync files
uses: SamKirkland/FTP-Deploy-Action@4.3.0
with:
server: ftp.vircadia.com
username: ${{ secrets.ftp_username }}
password: ${{ secrets.ftp_password }}
local-dir: dist/spa/
server-dir: /
dry-run: false