2024-10-21 08:30:24 +02:00
|
|
|
name: publish package
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Explore-Gitea-Actions:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: run tests
|
|
|
|
run: |
|
|
|
|
cd ${{ gitea.workspace }}
|
|
|
|
cargo test --release
|
|
|
|
- name: build & release package
|
|
|
|
run: |
|
|
|
|
cd ${{ gitea.workspace }}
|
|
|
|
cargo build --release
|
|
|
|
cargo deb
|
|
|
|
ls -al target/debian
|
|
|
|
UPLOAD_FILE=$(ls target/debian/*.deb)
|
|
|
|
curl --user jlusiardi:${{ secrets.UPLOAD_TOKEN }} --upload-file ${UPLOAD_FILE} https://gitea.intern.haus-in-hirschaid.de/api/packages/jlusiardi/debian/pool/bionic/main/upload
|
2024-11-07 09:15:24 +01:00
|
|
|
echo ${DEPLOY_PRIVATE_KEY} > /tmp/ssh_key
|
2024-11-07 09:24:19 +01:00
|
|
|
chmod 0600 /tmp/ssh_key
|
2024-11-07 09:22:19 +01:00
|
|
|
scp -o StrictHostKeyChecking=no -i /tmp/ssh_key ${UPLOAD_FILE} jlusiardi@april2023.lusiardi.de:/var/www/p17.lusiardi.de/el_diabolo
|