Skip to content

πŸ”– update version 1.4.0 #32

πŸ”– update version 1.4.0

πŸ”– update version 1.4.0 #32

Workflow file for this run

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