~ruther/qmk_firmware

ref: 146873fd8e6f3ca08ba1c0a283f70cb2e72c0c83 qmk_firmware/util/travis_push.sh -rwxr-xr-x 468 bytes
146873fd — Brandon Schlack Add more community layout support to Discipline (#8540) 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Use this by sourcing it in your script.

if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]] ; then
	git config --global user.name "QMK Bot"
	git config --global user.email "hello@qmk.fm"

	openssl aes-256-cbc -K $encrypted_b0ee987fd0fc_key -iv $encrypted_b0ee987fd0fc_iv -in secrets.tar.enc -out secrets.tar -d
	tar xvf secrets.tar

	chmod 600 id_rsa_qmk_firmware
	chmod 600 id_rsa_qmk.fm
	eval `ssh-agent -s`
	ssh-add id_rsa_qmk_firmware
fi