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.

fixed version errors and script errors

+12 -12
+1 -1
.config/ci/release/github-ci.cue
··· 72 72 run: "nix develop --command just create-notes ${{ github.ref_name }} release_notes.md CHANGELOG.md" 73 73 }, { 74 74 name: "Publish Release" 75 - uses: "softprops/action-gh-release@v2" 75 + uses: "softprops/action-gh-release@v5" 76 76 if: "startsWith(github.ref, 'refs/tags/')" 77 77 with: { 78 78 files: "dist/${{ env.BINARY_NAME }}-${{ matrix.target }}.tar.gz"
+3 -3
.config/ci/release/repo-install.sh
··· 1 - nix develop --command gh release download "$TAG_NAME" \\ 2 - --repo "$GITHUB_REPOSITORY" \\ 3 - --pattern '*' \\ 1 + nix develop --command gh release download "$TAG_NAME" \ 2 + --repo "$GITHUB_REPOSITORY" \ 3 + --pattern '*' \ 4 4 --dir dist
+8 -8
.github/workflows/release.yml
··· 30 30 strategy: 31 31 fail-fast: false 32 32 matrix: 33 - taret: 33 + target: 34 34 - aarch64-apple-darwin 35 35 - x86_64-apple-darwin 36 36 include: ··· 47 47 - name: Checkout code 48 48 uses: actions/checkout@v4 49 49 - name: Install Nix 50 - uses: cachix/install-nix-action@v27 50 + uses: cachix/install-nix-action@v31 51 51 with: 52 52 extra_nix_config: access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} 53 53 - name: Cache Cargo registry and git ··· 64 64 - name: Extract changelog for the tag 65 65 run: nix develop --command just create-notes ${{ github.ref_name }} release_notes.md CHANGELOG.md 66 66 - name: Publish Release 67 - uses: softprops/action-gh-release@v2 67 + uses: softprops/action-gh-release@v5 68 68 if: startsWith(github.ref, 'refs/tags/') 69 69 with: 70 70 files: dist/${{ env.BINARY_NAME }}-${{ matrix.target }}.tar.gz ··· 83 83 name: main 84 84 steps: 85 85 - name: Install Nix 86 - uses: cachix/install-nix-action@v27 86 + uses: cachix/install-nix-action@v31 87 87 with: 88 88 extra_nix_config: access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} 89 89 - name: Download Release Archives 90 90 env: 91 91 GH_TOKEN: ${{ secrets.PAT }} 92 92 TAG_NAME: ${{ github.ref_name }} 93 - run: |- 94 - nix develop --command gh release download "$TAG_NAME" \ 95 - --repo "$GITHUB_REPOSITORY" \ 96 - --pattern '*' \ 93 + run: | 94 + nix develop --command gh release download "$TAG_NAME" \\ 95 + --repo "$GITHUB_REPOSITORY" \\ 96 + --pattern '*' \\ 97 97 --dir dist 98 98 - name: Generate Checksums 99 99 run: nix develop --command just checksum dist