You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug Description
When I open my workflow file than there is linting error, displaying, that there is a missing required input, although the source-path shouldn't be required
My Action Config
on:
# Triggers the workflow on push or pull request events but only for the "main" branch# push:# branches: ["main"]# pull_request:# branches: ["main"]# Allows you to run this workflow manually from the Actions tabworkflow_dispatch:
jobs:
web-deploy:
name: 🎉 SSH-Deployruns-on: ubuntu-lateststeps:
- name: 🚚 Get latest codeuses: actions/checkout@v3
- name: 💻 Setup Node.jsuses: actions/setup-node@v3with:
node-version: 18
- name: 📥 Install dependenciesrun: npm ci
- name: 🔨 Build Projectrun: npm run production
- name: 📂 Sync files# https://github.com/SamKirkland/web-deployuses: SamKirkland/web-deploy@v1with:
target-server: ${{ secrets.SSH_SERVER }}remote-user: ${{ secrets.SSH_USERNAME }}private-ssh-key: ${{ secrets.SSH_KEY }}ssh-port: 22destination-path: ./www/public_html/rsync-options: > --dry-run --archive --verbose --compress --delete-after --human-readable --exclude-from=.github/workflows/deploy/rsync-exclude.txt
Here is a screenshot:
The text was updated successfully, but these errors were encountered:
Bug Description
When I open my workflow file than there is linting error, displaying, that there is a missing required input, although the
source-path
shouldn't be requiredMy Action Config
Here is a screenshot:
The text was updated successfully, but these errors were encountered: