-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
abba3ae
commit 2783966
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|