deleted deploy.yaml
This commit is contained in:
parent
663841d568
commit
ebf4427139
3 changed files with 0 additions and 50 deletions
0
.brew_lists/brew_list.txt → .brew_lists/brew_list.txt.new
Normal file → Executable file
0
.brew_lists/brew_list.txt → .brew_lists/brew_list.txt.new
Normal file → Executable file
0
.brew_lists/cask_list.txt → .brew_lists/cask_list.txt.new
Normal file → Executable file
0
.brew_lists/cask_list.txt → .brew_lists/cask_list.txt.new
Normal file → Executable file
50
.github/workflows/deploy.yml
vendored
50
.github/workflows/deploy.yml
vendored
|
|
@ -1,50 +0,0 @@
|
|||
name: Deploy Scripts
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Git
|
||||
run: |
|
||||
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 .
|
||||
git add aactivator.py
|
||||
git commit -m "Deploy aactivator.py"
|
||||
git push
|
||||
|
||||
- name: Deploy tmux_sessionizer
|
||||
run: |
|
||||
cp tmux_sessionizer .
|
||||
git add tmux_sessionizer
|
||||
git commit -m "Deploy tmux_sessionizer"
|
||||
git push
|
||||
|
||||
- name: Deploy tmux_windownizer
|
||||
run: |
|
||||
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 .
|
||||
git add setup_dev_environment.sh
|
||||
git commit -m "Deploy setup_dev_environment.sh"
|
||||
git push
|
||||
|
||||
- name: Deployment complete
|
||||
run: echo "Scripts deployed successfully."
|
||||
Loading…
Reference in a new issue