A minimal email TUI where you read with Markdown and write in Neovim. neomd.ssp.sh/docs
email markdown neovim tui
1
fork

Configure Feed

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

fix aur pipeline

sspaeti 971b50da 971756ca

+52 -1
+51
.github/workflows/aur-republish.yml
··· 1 + name: AUR Republish 2 + 3 + # Manually re-publish an already-released version to the AUR. 4 + # Use this when the `aur` job in release.yml failed but the GitHub release 5 + # (and its tarballs) were created successfully — avoids cutting a new tag. 6 + 7 + on: 8 + workflow_dispatch: 9 + inputs: 10 + version: 11 + description: "Release version to republish (without leading v, e.g. 0.4.9)" 12 + required: true 13 + type: string 14 + 15 + jobs: 16 + aur: 17 + runs-on: ubuntu-latest 18 + steps: 19 + - uses: actions/checkout@v4 20 + 21 + - name: Update PKGBUILD version and checksums 22 + run: | 23 + cd aur 24 + PKGVER="${{ inputs.version }}" 25 + TAG="v${PKGVER}" 26 + 27 + sed -i "s/^pkgver=.*/pkgver=${PKGVER}/" PKGBUILD 28 + 29 + BASE_URL="https://github.com/ssp-data/neomd/releases/download/${TAG}" 30 + curl -fsSL "${BASE_URL}/neomd_${PKGVER}_linux_amd64.tar.gz" -o amd64.tar.gz 31 + curl -fsSL "${BASE_URL}/neomd_${PKGVER}_linux_arm64.tar.gz" -o arm64.tar.gz 32 + 33 + SHA_AMD64=$(sha256sum amd64.tar.gz | cut -d' ' -f1) 34 + SHA_ARM64=$(sha256sum arm64.tar.gz | cut -d' ' -f1) 35 + 36 + sed -i "s/^sha256sums_x86_64=.*/sha256sums_x86_64=('${SHA_AMD64}')/" PKGBUILD 37 + sed -i "s/^sha256sums_aarch64=.*/sha256sums_aarch64=('${SHA_ARM64}')/" PKGBUILD 38 + 39 + rm -f amd64.tar.gz arm64.tar.gz 40 + 41 + cat PKGBUILD 42 + 43 + - name: Publish to AUR 44 + uses: KSXGitHub/github-actions-deploy-aur@v4.1.2 45 + with: 46 + pkgname: neomd-bin 47 + pkgbuild: aur/PKGBUILD 48 + commit_username: Simon Späti 49 + commit_email: simon@ssp.sh 50 + ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} 51 + commit_message: "Update to ${{ inputs.version }}"
+1 -1
.github/workflows/release.yml
··· 71 71 cat PKGBUILD 72 72 73 73 - name: Publish to AUR 74 - uses: KSXGitHub/github-actions-deploy-aur@v4 74 + uses: KSXGitHub/github-actions-deploy-aur@v4.1.2 75 75 with: 76 76 pkgname: neomd-bin 77 77 pkgbuild: aur/PKGBUILD