A cli tool to upload an artifact to a tangled repo, mainly during spindle workflows
ci artifact spindle

Major : first release

+2 -3
+2 -3
.tangled/workflows/next-tag.yml
··· 58 58 59 59 - name: Push new tag 60 60 environment: 61 - GIT_SSH_COMMAND: "ssh -i /tangled/home/.ssh/privkey -o IdentitiesOnly=yes -o" 61 + GIT_SSH_COMMAND: "ssh -i $HOME/.ssh/privkey -o IdentitiesOnly=yes -o" 62 62 command: | 63 - ssh-keygen -f /tangled/home/.ssh/privkey -y 64 63 if [ -f "tag" ]; then 65 64 TAG=$(cat tag) 66 65 git tag -a $TAG -m "Release $TAG" 67 - git push --tags 66 + git push --tags 68 67 fi