/Makefile (6266cc8d0658a734bf7893db8c48310e823608a7) (331 bytes) (mode 100644) (type blob)

KEY=$(HOME)/keys/q.sec
MESSAGE=message


.PHONY: all
all: signature git
	@echo "Yay, we updated our new canary message!"


.PHONY: signature
signature: $(MESSAGE) $(KEY)
	signify -S -e -m $(MESSAGE) -s $(KEY)


.PHONY: git
git:
	git add $(MESSAGE) $(MESSAGE).sig
	git commit -m "New update" -q || echo "No new files."
	git push -q


Mode Type Size Ref File
100644 blob 331 6266cc8d0658a734bf7893db8c48310e823608a7 Makefile
100644 blob 5559 268dfda9713338b68df123941e910df9efd79c6b message
100644 blob 5697 d7e40c97c954f02780ab711d2330420723746160 message.sig
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/qwskr/canary

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/qwskr/canary

Clone this repository using git:
git clone git://git.rocketgit.com/user/qwskr/canary

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main