0
0
mirror of https://github.com/cucumber-sp/yandex-music-linux.git synced 2024-12-23 22:22:59 +03:00

Auto update apt repo

This commit is contained in:
Andrey Onischenko 2024-10-17 11:05:06 +03:00
parent 36ce4b0894
commit e1f7f8ab03

View File

@ -119,6 +119,25 @@ jobs:
run: | run: |
sudo apt-get update -y sudo apt-get update -y
sudo apt-get install jq -y sudo apt-get install jq -y
- name: Copy files to APT server
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.CLOUD_SSH_HOST }}
username: ${{ secrets.CLOUD_SSH_USERNAME }}
password: ${{ secrets.CLOUD_SSH_PASSWORD }}
source: "dist/*.deb"
target: ~/apt/repo/deb-packages
rm: true
strip_components: 1
- name: Update APT repo
uses: appleboy/ssh-action@v1.1.0
with:
host: ${{ secrets.CLOUD_SSH_HOST }}
username: ${{ secrets.CLOUD_SSH_USERNAME }}
password: ${{ secrets.CLOUD_SSH_PASSWORD }}
script: ~/apt/update-repo.sh ${{ secrets.APT_KEY_PASSPHRASE }}
- name: Get Release Notes HTML - name: Get Release Notes HTML
id: release_notes id: release_notes