From 2783966124367928567a16f4830306c154f90556 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=9D=95=AF=F0=9D=96=8A=F0=9D=96=92=F0=9D=96=94?= =?UTF-8?q?=F0=9D=96=93=20=F0=9D=95=B3=F0=9D=96=9A=F0=9D=96=93=F0=9D=96=99?= =?UTF-8?q?=F0=9D=96=8A=F0=9D=96=97?= <117833298+VictorH028@users.noreply.github.com> Date: Mon, 28 Oct 2024 07:00:33 -0400 Subject: [PATCH] Create haklab_zip.yml --- .github/workflows/haklab_zip.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/haklab_zip.yml diff --git a/.github/workflows/haklab_zip.yml b/.github/workflows/haklab_zip.yml new file mode 100644 index 00000000..68d5b6d9 --- /dev/null +++ b/.github/workflows/haklab_zip.yml @@ -0,0 +1,30 @@ +# Nombre del flujo de trabajo +name: i-haklab-zip + +# Se ejecutara en cada push a la rama principal y en cada pull request. +on: + push: + branches: + - master + pull_request: + +# MV +jobs: + build: + name: "Build" + runs-on: ubuntu-latest + steps: + - name: Install dependencies... + run: | + sudo apt update && sudo apt install -y zip +# Permite compartir datos + - name: Clone repository + uses: actions/checkout@v3 + - name: Compressing nvim.... + run: zip -r nvim.zip ./.deb/home/.config/nvim + - name: Uploading... + uses: actions/upload-artifact@v4 + with: + name: Config the nvim + path: nvim.zip +