mirror of
https://github.com/tmxk2021/CF-IPTV.git
synced 2025-12-21 17:24:44 +08:00
25 lines
557 B
YAML
25 lines
557 B
YAML
name: Add execute permission
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- setup_hkdvb.sh
|
|
|
|
jobs:
|
|
add-permission:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Add execute permission
|
|
run: chmod +x setup_hkdvb.sh
|
|
|
|
- name: Commit changes
|
|
run: |
|
|
git config --global user.email "you@example.com"
|
|
git config --global user.name "Your Name"
|
|
git add setup_hkdvb.sh
|
|
git commit -m "Add execute permission to setup_hkdvb.sh"
|
|
git push
|