Skip to content

Updated frontend to always show newest Soundcloud track as iframe #46

Updated frontend to always show newest Soundcloud track as iframe

Updated frontend to always show newest Soundcloud track as iframe #46

Workflow file for this run

on:
push:
branches:
- main
name: πŸš€ Deploy website on push
jobs:
web-deploy:
name: πŸŽ‰ Deploy
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v2
- name: Use Node.js 16 LTS
uses: actions/setup-node@v1
with:
node-version: "16.15.0"
- name: πŸ”¨ Build Project
run: |
npm install
npm run build
- name: πŸ“‚ Sync files
uses: SamKirkland/[email protected]
with:
server: ${{ secrets.ftp_server }}
username: ${{ secrets.ftp_username }}
password: ${{ secrets.ftp_password }}
local-dir: ./build/
server-dir: ${{ secrets.ftp_server_dir }}
dangerous-clean-slate: false