Skip to content

Commit

Permalink
Fix delivery
Browse files Browse the repository at this point in the history
  • Loading branch information
ztefanie committed Mar 27, 2024
1 parent d2a3e0c commit 33e8e0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/src/jobs/deliver_to_server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ steps:
- run:
name: SFTP upload package
command: |
mkdir /home/circleci/.ssh
mkdir -p /home/circleci/.ssh
echo ${APT_FINGERPRINT_PRODUCTION} >> /home/circleci/.ssh/known_hosts
echo "Uploading: " ~/attached_workspace/debs/<< parameters.bundle >>/*.deb
sftp -b - [email protected]:/srv/local-apt-repository/ \<<< "put -r /home/circleci/attached_workspace/debs/<< parameters.bundle >>/*.deb"
Expand All @@ -41,12 +41,12 @@ steps:
- run:
name: SFTP upload package
command: |
mkdir /home/circleci/.ssh
mkdir -p /home/circleci/.ssh
echo ${APT_FINGERPRINT_STAGING} >> /home/circleci/.ssh/known_hosts
echo "Uploading: " /home/circleci/attached_workspace/debs/<< parameters.bundle >>/*.deb
sftp -b - [email protected]:/srv/local-apt-repository/ \<<< "put -r /home/circleci/attached_workspace/debs/<< parameters.bundle >>/*.deb"
- run:
name: Install package via webhook
command: |
curl https://webhook.entitlementcard-test.tuerantuer.org/hooks/install-<< parameters.bundle >>-$EAK_WEBHOOK
- notify
# - notify

0 comments on commit 33e8e0f

Please sign in to comment.