Skip to content

feat: add favicon to main site #2

feat: add favicon to main site

feat: add favicon to main site #2

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow

Check failure on line 1 in .github/workflows/production.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/production.yaml

Invalid workflow file

You have an error in your yaml syntax
#
# following https://lab.uberspace.de/howto_automatic-deployment/
name: "Deploy"
on:
push:
branches: [main]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22.9.0"
cache: "npm"
cache-dependency-path: "package-lock.json"
- run: |
npm ci
npm run build
- name: Deploy
uses: burnett01/rsync-deployments@7
with:
switches: "-avrh --delete"
path: "dist/"
remote_path: "/var/www/virtual/${{ vars.SSH_USERNAME }}/html"
remote_host: "${{ vars.SSH_HOST }}"
remote_user: "${{ vars.SSH_USERNAME }}"
remote_key: "${{ secrets.SSH_PRIVATE_KEY }}"
- run: echo "deploy"