tangled
alpha
login
or
join now
regnault.dev
/
spindle-artifact
A cli tool to upload an artifact to a tangled repo, mainly during spindle workflows
ci
artifact
spindle
7
fork
atom
overview
issues
pulls
pipelines
Major
regnault.dev
1 month ago
58f1a9fc
e7f6e758
0/1
next-tag.yml
failed
4s
+2
-1
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
next-tag.yml
+2
-1
.tangled/workflows/next-tag.yml
···
27
command: |
28
git config --global user.email "evann.regnault@pm.me"
29
git config --global user.name "Evann Regnault"
0
0
30
URL=$(git remote get-url origin)
31
REPO=${URL#*//*/}
32
git remote set-url origin "git@tangled.org:"$REPO
···
56
environment:
57
58
command: |
59
-
git checkout main
60
export GIT_SSH_COMMAND="ssh -i $HOME/.ssh/privkey -o IdentitiesOnly=yes"
61
if [ -f "tag" ]; then
62
TAG=$(cat tag)
···
27
command: |
28
git config --global user.email "evann.regnault@pm.me"
29
git config --global user.name "Evann Regnault"
30
+
git fetch
31
+
git checkout main
32
URL=$(git remote get-url origin)
33
REPO=${URL#*//*/}
34
git remote set-url origin "git@tangled.org:"$REPO
···
58
environment:
59
60
command: |
0
61
export GIT_SSH_COMMAND="ssh -i $HOME/.ssh/privkey -o IdentitiesOnly=yes"
62
if [ -f "tag" ]; then
63
TAG=$(cat tag)