Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

63
Views
Crear un archivo de implementación de flujo de trabajo de acciones de Github.yaml y obtener un error

Estoy intentando crear mi primer flujo de trabajo de acciones de Github y aparece un error que la investigación en línea no me ayuda a resolver. Este es un flujo de trabajo bastante básico en este momento para un sitio de WordPress. Está fallando en la línea "fetch-profundidad: 0". He estado comprobando la sangría y mirando ejemplos en línea.

name: deploy
on:
  push:
    branches:
      # Pushing to the `master` branch
      # will trigger our workflow
      - master
    paths-ignore:
      # Ignore files and folders
        - 'bin/**'
        - 'readme.html'
concurrency:
  #maximum of one deployment in progress and one deployment pending at a time
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true
permissions:
  actions: write
  contents: read
jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        # Checkout our repository under `${GITHUB_WORKSPACE}`,
        # so our workflow can access it
        uses: actions/checkout@v3
        with:
          # Fetch the entire Git history. 
          fetch-depth: 0

      - name: Deploy via SFTP
          #Deploy via FTP details
          uses: actions/checkout@v3
          with:
            host: ${{ secrets.MW_FTP_SERVER }}
            port: ${{ secrets.MW_FTP_PORT }}
            user: ${{ secrets.MW_FTP_USER }}
            pass: ${{ secrets.MW_FTP_PASS }}
            remoteDir: '/httpdocs'
            options: '--verbose'
over 2 years ago · Carlos Garzón Colorado
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!