Skip to content
# Nombre del flujo de trabajo
name: i-haklab-build
# Se ejecutara en cada push a la rama principal y en cada pull request.
on:
push:
branches:
- main
pull_request:
# MV
jobs:
build:
name: "Build"
runs-on: ubuntu-latest
steps:
- name: Install dependencies...
run: |
sudo apt update && sudo apt install -y tar
# Permite compartir datos
- name: Clone repository
uses: actions/checkout@v3
- name: Filling in home...
run: pwd
run: tar -zcf Home.tar.gz -C ./home

Check failure on line 25 in .github/workflows/i-haklab_build.yml

View workflow run for this annotation

GitHub Actions / i-haklab-build

Invalid workflow file

The workflow is not valid. .github/workflows/i-haklab_build.yml (Line: 25, Col: 7): 'run' is already defined
- name: Uploading...
uses: actions/upload-artifact@v3
with:
name: Home.tar.gz
path: Home.tar.gz