Update deploy.yml
This commit is contained in:
parent
c29184c918
commit
027738ad5c
1 changed files with 10 additions and 10 deletions
20
.github/workflows/deploy.yml
vendored
20
.github/workflows/deploy.yml
vendored
|
|
@ -15,34 +15,34 @@ jobs:
|
|||
|
||||
- name: Set up Git
|
||||
run: |
|
||||
git config --global user.email "your-email@example.com"
|
||||
git config --global user.name "Your Name"
|
||||
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
|
||||
git config --global user.name "${{ github.actor }}"
|
||||
|
||||
- name: Deploy aactivator.py
|
||||
run: |
|
||||
cp aactivator.py /path/to/your/deployment/directory
|
||||
git add /path/to/your/deployment/directory/aactivator.py
|
||||
cp aactivator.py .
|
||||
git add aactivator.py
|
||||
git commit -m "Deploy aactivator.py"
|
||||
git push
|
||||
|
||||
- name: Deploy tmux_sessionizer
|
||||
run: |
|
||||
cp tmux_sessionizer /path/to/your/deployment/directory
|
||||
git add /path/to/your/deployment/directory/tmux_sessionizer
|
||||
cp tmux_sessionizer .
|
||||
git add tmux_sessionizer
|
||||
git commit -m "Deploy tmux_sessionizer"
|
||||
git push
|
||||
|
||||
- name: Deploy tmux_windownizer
|
||||
run: |
|
||||
cp tmux_windownizer /path/to/your/deployment/directory
|
||||
git add /path/to/your/deployment/directory/tmux_windownizer
|
||||
cp tmux_windownizer .
|
||||
git add tmux_windownizer
|
||||
git commit -m "Deploy tmux_windownizer"
|
||||
git push
|
||||
|
||||
- name: Deploy setup_dev_environment.sh
|
||||
run: |
|
||||
cp setup_dev_environment.sh /path/to/your/deployment/directory
|
||||
git add /path/to/your/deployment/directory/setup_dev_environment.sh
|
||||
cp setup_dev_environment.sh .
|
||||
git add setup_dev_environment.sh
|
||||
git commit -m "Deploy setup_dev_environment.sh"
|
||||
git push
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue