Skip to content

Commit

Permalink
πŸ‘¨πŸ½β€πŸ’» rename main directory to github action
Browse files Browse the repository at this point in the history
  • Loading branch information
jorge-jrzz committed Jun 23, 2024
1 parent c6f136f commit 1f3f566
Showing 1 changed file with 40 additions and 41 deletions.
81 changes: 40 additions & 41 deletions .github/workflows/deploy_brach.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,50 +3,49 @@ name: Copy files to deploy branch
on:
push:
branches:
- main # Rama principal
- main # Rama principal

jobs:
sync:
runs-on: ubuntu-latest

steps:
- name: Checkout main branch
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: main

- name: List files in the repository
run: ls -la

- name: Copy files
run: |
mkdir -p deployment_directory/
cp -r Pynani deployment_directory/
cp pyproject.toml deployment_directory/
cp README.md deployment_directory/
cp LICENSE deployment_directory/
cp .gitignore deployment_directory/
- name: Checkout deployment branch
run: |
git checkout deployment-branch
- name: Configure Git
run: |
git config --global user.name "jorge-jrzz"
git config --global user.email "[email protected]"
- name: Copy to Deploy Branch
run: |
cp -r deployment_directory/* .
rm -rf deployment_directory
git add .
- name: Commit and push changes
env:
ACTIONS_DEPLOY_TOKEN: ${{ secrets.ACTIONS_DEPLOY_TOKEN }}
run: |
git commit -m "πŸš€ Deploy files" || echo "No changes to commit"
git push https://jorge-jrzz:${{ secrets.ACTIONS_DEPLOY_TOKEN }}@github.com/jorge-jrzz/Pynani.git deployment-branch
- name: Checkout main branch
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: main

- name: List files in the repository
run: ls -la

- name: Copy files
run: |
mkdir -p deployment_directory/
cp -r pynani deployment_directory/
cp pyproject.toml deployment_directory/
cp README.md deployment_directory/
cp LICENSE deployment_directory/
cp .gitignore deployment_directory/
- name: Checkout deployment branch
run: |
git checkout deployment-branch
- name: Configure Git
run: |
git config --global user.name "jorge-jrzz"
git config --global user.email "[email protected]"
- name: Copy to Deploy Branch
run: |
cp -r deployment_directory/* .
rm -rf deployment_directory
git add .
- name: Commit and push changes
env:
ACTIONS_DEPLOY_TOKEN: ${{ secrets.ACTIONS_DEPLOY_TOKEN }}
run: |
git commit -m "πŸš€ Deploy files" || echo "No changes to commit"
git push https://jorge-jrzz:${{ secrets.ACTIONS_DEPLOY_TOKEN }}@github.com/jorge-jrzz/Pynani.git deployment-branch

0 comments on commit 1f3f566

Please sign in to comment.