My personal website emmeline.tngl.io/
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add workflow

+31 -1
-1
.gitignore
··· 1 - /output
+31
.tangled/workflows/build.yaml
··· 1 + when: 2 + - event: ["push", "manual"] 3 + branch: ["main"] 4 + 5 + engine: "nixery" 6 + 7 + clone: 8 + depth: 1 9 + 10 + dependencies: 11 + nixpkgs: 12 + - cargo 13 + - gcc 14 + 15 + steps: 16 + - name: build puppy 17 + command: | 18 + cd ~/ && 19 + git clone https://tangled.org/emmeline.girlkisser.top/puppy && 20 + sh run.sh "build/standalone release" install/by-cp 21 + 22 + - name: build site 23 + command: | 24 + ~/.local/bin/puppy main.pup 25 + 26 + - name: push to output branch 27 + command: | 28 + git add . && 29 + git commit -m 'build: ${date "+%Y-%m-%d %H:%M:%S"}' && 30 + git push -u origin output 31 +