π bug: requirements.txt #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Copy files to deploy branch | |
on: | |
push: | |
branches: | |
- 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: | | |
shopt -s extglob | |
rm -rf !(deployment_directory) | |
shopt -u extglob | |
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 |