Skip to content

Commit

Permalink
Create haklab_zip.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorH028 authored Oct 28, 2024
1 parent abba3ae commit 2783966
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/haklab_zip.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2783966

Please sign in to comment.