Connect applications to schemes, filetypes, and more on macOS (more to come)
2
fork

Configure Feed

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

Better workflow

+10 -4
+10 -4
.tangled/workflows/release.yaml
··· 1 - engine: nixery 1 + engine: "nixery" 2 2 3 3 when: 4 4 - event: ["push"] ··· 9 9 - just 10 10 - rustup 11 11 - gh 12 + - nushell 13 + - b3sum 14 + - gnutar 15 + - typos 16 + - coreutils 17 + - gawk 18 + - gnugrep 12 19 13 20 environment: 14 21 RUSTFLAGS: "--deny warnings" ··· 31 38 just checksum dist 32 39 33 40 - name: "Publish Release" 34 - environment: 35 - GH_TOKEN: ${{ secrets.GH_TOKEN }} 36 41 command: | 37 - TAG_NAME=$(echo $GIT_REF | cut -d'/' -f3) 42 + TAG_NAME=$TANGLED_REF_NAME 38 43 44 + echo "Publishing release for $TAG_NAME" 39 45 gh release create "$TAG_NAME" dist/* \ 40 46 --title "Release $TAG_NAME" \ 41 47 --notes "Automated release from Tangled Spindle"