Skip to content

Commit ba321c4

Browse files
committed
Update .gitignore to include new scripts and configuration files
1 parent f72b4b4 commit ba321c4

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
push:
55
branches:
66
- main
7+
paths:
8+
- src/proxmox-configurator.sh
79
workflow_dispatch:
810

911
jobs:
@@ -32,7 +34,7 @@ jobs:
3234
- name: Empaquetar script en tar.gz
3335
run: |
3436
mkdir PECU-${{ env.VERSION }}
35-
cp proxmox-configurator.sh PECU-${{ env.VERSION }}/
37+
cp src/proxmox-configurator.sh PECU-${{ env.VERSION }}/
3638
tar -czvf PECU-${{ env.VERSION }}.tar.gz PECU-${{ env.VERSION }}
3739
3840
- name: Crear o actualizar GitHub Release
@@ -53,7 +55,7 @@ jobs:
5355
**Direct Execution (Latest Version):**
5456
Run the script directly from GitHub with this command:
5557
```bash
56-
bash <(curl -sL https://raw.githubusercontent.com/Danilop95/Proxmox-Enhanced-Configuration-Utility/v${{ env.VERSION }}/proxmox-configurator.sh)
58+
bash <(curl -sL https://raw.githubusercontent.com/Danilop95/Proxmox-Enhanced-Configuration-Utility/v${{ env.VERSION }}/src/proxmox-configurator.sh)
5759
```
5860
This command fetches and executes the specific version (v${{ env.VERSION }}) of the script.
5961

.gitignore

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
21
*
3-
42
!LICENSE
53
!README.md
6-
!proxmox-configurator.sh
7-
!pecu_release_selector.sh
4+
!release-notes/release-notes.md
5+
!scripts/pecu_release_selector.sh
6+
!src/proxmox-configurator.sh
87
!.gitignore

0 commit comments

Comments
 (0)