Update .gitea/workflows/deploy.yml
Deploy Package / Deploy (push) Successful in 7s Details

This commit is contained in:
Carneiro 2024-11-23 17:51:10 -03:00
parent 95d25d13fd
commit 63d631cc48
1 changed files with 2 additions and 30 deletions

View File

@ -3,36 +3,8 @@ run-name: ${{ gitea.actor }} is deploying
on: [push] on: [push]
jobs: jobs:
Explore-Gitea-Actions: Deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Deploy to alice - name: Deploy to alice
run: | uses: https://git.alice.ufsj.edu.br/alice-meta-packages/deb-deploy-action@main
echo "${{ secrets.SCP_KEY_ALICE }}" > /tmp/ssh_private_key
chmod 600 /tmp/ssh_private_key
ssh -o "StrictHostKeyChecking no" -i /tmp/ssh_private_key act_runner@alice.ufsj.edu.br -p ${{ secrets.SSH_PORT_ALICE }} << 'EOF'
cd /tmp
echo "Removing old clones..."
rm -rf ./${{ github.event.repository.name }}
echo "Cloning the repo..."
git clone --depth=1 https://git.alice.ufsj.edu.br/${{ gitea.repository }}
echo "Removing .git dir..."
rm -rf ./${{ github.event.repository.name }}/.git ./${{ github.event.repository.name }}/.gitea
ls -la ./${{ github.event.repository.name }}
echo "Building package..."
dpkg-deb --build ${{ github.event.repository.name }}
echo "Moving package to ppa..."
mv ${{ github.event.repository.name }}.deb /var/www/html/debian/pool/main
cd /var/www/html/debian
echo "Creating Packages file..."
dpkg-scanpackages pool/ > dists/stable/main/binary-amd64/Packages
echo "Creating Relase file..."
apt-ftparchive -c /var/www/html/debian/apt-ftparchive.conf release /var/www/html/debian/dists/stable > /var/www/html/debian/dists/stable/Release
EOF