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
|
- name: Set up Git
|
||||||
run: |
|
run: |
|
||||||
git config --global user.email "your-email@example.com"
|
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
|
||||||
git config --global user.name "Your Name"
|
git config --global user.name "${{ github.actor }}"
|
||||||
|
|
||||||
- name: Deploy aactivator.py
|
- name: Deploy aactivator.py
|
||||||
run: |
|
run: |
|
||||||
cp aactivator.py /path/to/your/deployment/directory
|
cp aactivator.py .
|
||||||
git add /path/to/your/deployment/directory/aactivator.py
|
git add aactivator.py
|
||||||
git commit -m "Deploy aactivator.py"
|
git commit -m "Deploy aactivator.py"
|
||||||
git push
|
git push
|
||||||
|
|
||||||
- name: Deploy tmux_sessionizer
|
- name: Deploy tmux_sessionizer
|
||||||
run: |
|
run: |
|
||||||
cp tmux_sessionizer /path/to/your/deployment/directory
|
cp tmux_sessionizer .
|
||||||
git add /path/to/your/deployment/directory/tmux_sessionizer
|
git add tmux_sessionizer
|
||||||
git commit -m "Deploy tmux_sessionizer"
|
git commit -m "Deploy tmux_sessionizer"
|
||||||
git push
|
git push
|
||||||
|
|
||||||
- name: Deploy tmux_windownizer
|
- name: Deploy tmux_windownizer
|
||||||
run: |
|
run: |
|
||||||
cp tmux_windownizer /path/to/your/deployment/directory
|
cp tmux_windownizer .
|
||||||
git add /path/to/your/deployment/directory/tmux_windownizer
|
git add tmux_windownizer
|
||||||
git commit -m "Deploy tmux_windownizer"
|
git commit -m "Deploy tmux_windownizer"
|
||||||
git push
|
git push
|
||||||
|
|
||||||
- name: Deploy setup_dev_environment.sh
|
- name: Deploy setup_dev_environment.sh
|
||||||
run: |
|
run: |
|
||||||
cp setup_dev_environment.sh /path/to/your/deployment/directory
|
cp setup_dev_environment.sh .
|
||||||
git add /path/to/your/deployment/directory/setup_dev_environment.sh
|
git add setup_dev_environment.sh
|
||||||
git commit -m "Deploy setup_dev_environment.sh"
|
git commit -m "Deploy setup_dev_environment.sh"
|
||||||
git push
|
git push
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue