updated workflow checkout version #113
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: ircube obs trigger | |
on: | |
push: | |
paths: | |
- '**/ircube-x/**' | |
- '**/prepare_obs' | |
- '**/catChangeLog' | |
- .github/workflows/ircube-obs.yml | |
- '!**/doc/*' | |
- '!**.md' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout_ircube | |
uses: actions/checkout@v4 | |
- name: prepare obs | |
run: cd ircube-x; ./prepare_obs ircube | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ircube | |
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/ircube-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 ircube-obs.sig --detach-sig $GITHUB_WORKSPACE/ircube-obs.tar.gz | |
# copy to /home/frs/project/indimail/github | |
scp -q -i ~/.private_key $GITHUB_WORKSPACE/ircube-obs.tar.gz \ | |
~/stage/ircube-obs.sig "${{secrets.sf_user}}:${{secrets.sf_upload_path}}" | |
rm -f ~/.private_key ~/.ssh/known_hosts $GITHUB_WORKSPACE/ircube-obs.tar.gz | |
rm -rf ~/stage |