updated workflow checkout version #140
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: logalert obs trigger | |
on: | |
push: | |
paths: | |
- '**/logalert-x/**' | |
- '**/prepare_obs' | |
- '**/catChangeLog' | |
- .github/workflows/logalert-obs.yml | |
- '!**/doc/*' | |
- '!**.md' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout_logalert | |
uses: actions/checkout@v4 | |
- name: checkout_qmail | |
uses: actions/checkout@v4 | |
with: | |
repository: mbhangui/libqmail | |
path: libqmail | |
- name: install_qmail | |
run: | | |
sudo apt-get update; sudo apt-get install libpcre3-dev flex bison libmysqlclient-dev libncurses5-dev | |
cd libqmail; ./default.configure; make; sudo make install-strip | |
- name: prepare obs | |
run: cd logalert-x; ./prepare_obs logalert | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: logalert | |
path: ~/stage | |
- shell: bash | |
name: trigger_obs | |
run: | | |
# create ssh environment | |
mkdir ~/.ssh | |
echo "${{secrets.sf_private_key}}" > ~/.private_key | |
chmod 600 ~/.private_key | |
echo "${{secrets.sf_known_hosts}}" > ~/.ssh/known_hosts | |
# create gpg environment | |
echo "Importing gpg key" | |
echo "${{secrets.software_key}}" | gpg --batch --import | |
echo "Listing gpg key" | |
gpg --list-secret-keys --keyid-format LONG | |
# create archive and transfer | |
cd ~/stage | |
tar cvfz $GITHUB_WORKSPACE/logalert-obs.tar.gz * | |
# create detached signature for obs archive | |
echo "${{secrets.software_passphrase}}" | gpg2 --pinentry-mode loopback \ | |
--passphrase-fd 0 --default-key "${{secrets.software_user}}" \ | |
-o logalert-obs.sig --detach-sig $GITHUB_WORKSPACE/logalert-obs.tar.gz | |
# copy to /home/frs/project/indimail/github | |
scp -q -i ~/.private_key $GITHUB_WORKSPACE/logalert-obs.tar.gz \ | |
~/stage/logalert-obs.sig "${{secrets.sf_user}}:${{secrets.sf_upload_path}}" | |
rm -f ~/.private_key ~/.ssh/known_hosts $GITHUB_WORKSPACE/logalert-obs.tar.gz | |
rm -rf ~/stage |