Custom theme backlight color, add Synthwave, Synthwave 2077, Synthwav… #85
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy to Dango Web Solutions | |
| on: | |
| push: | |
| branches: ['main'] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| id-token: write | |
| concurrency: | |
| group: 'pages' | |
| cancel-in-progress: true | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Set up Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Build | |
| run: npm run build | |
| - name: List contents | |
| run: ls -la ./dist | |
| - name: FTP | |
| uses: kevinpainchaud/simple-ftp-deploy-action@v1.2.1 | |
| with: | |
| ftp_host: 'da.dangoweb.com' | |
| ftp_username: ${{ secrets.FTP_USERNAME }} | |
| ftp_password: ${{ secrets.FTP_PASSWORD }} | |
| local_source_dir: "dist" | |
| dist_target_dir: "public_html/virtual-clicker" | |
| delete: "true" | |
| exclude: "'^node_modules/'" |