๐Ÿ”— Redirect Bluesky links to your preferred client
3
fork

Configure Feed

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

Replace release getter and override build tools version for signing

+14 -6
+14 -6
.github/workflows/build.yml
··· 27 27 28 28 - name: Get Latest Release 29 29 id: release 30 - uses: InsonusK/get-latest-release@v1.1.0 30 + uses: pozetroninc/github-action-get-latest-release@v0.8.0 31 31 with: 32 - myToken: ${{ secrets.GITHUB_TOKEN }} 33 - view_top: 1 32 + owner: zacharee 33 + repo: MastodonRedirect 34 + token: ${{ secrets.GITHUB_TOKEN }} 35 + excludes: "prerelease, draft" 34 36 35 37 - name: Grant execute permission for gradlew 36 38 run: chmod +x gradlew ··· 103 105 alias: ${{ secrets.ANDROID_SIGNING_KEY_ALIAS }} 104 106 keyStorePassword: ${{ secrets.ANDROID_SIGNING_KEY_PWD }} 105 107 keyPassword: ${{ secrets.ANDROID_SIGNING_KEY_PWD }} 108 + env: 109 + BUILD_TOOLS_VERSION: "35.0.0" 106 110 107 111 - name: Sign Mastodon Redirect 108 112 id: sign_mastodon_redirect ··· 113 117 alias: ${{ secrets.ANDROID_SIGNING_KEY_ALIAS }} 114 118 keyStorePassword: ${{ secrets.ANDROID_SIGNING_KEY_PWD }} 115 119 keyPassword: ${{ secrets.ANDROID_SIGNING_KEY_PWD }} 120 + env: 121 + BUILD_TOOLS_VERSION: "35.0.0" 116 122 117 123 - name: Sign PeerTube Redirect 118 124 id: sign_peertube_redirect ··· 123 129 alias: ${{ secrets.ANDROID_SIGNING_KEY_ALIAS }} 124 130 keyStorePassword: ${{ secrets.ANDROID_SIGNING_KEY_PWD }} 125 131 keyPassword: ${{ secrets.ANDROID_SIGNING_KEY_PWD }} 132 + env: 133 + BUILD_TOOLS_VERSION: "35.0.0" 126 134 127 135 - name: Upload Lemmy Redirect 128 136 if: ${{ always() }} ··· 153 161 allowUpdates: true 154 162 replacesArtifacts: false 155 163 omitBodyDuringUpdate: true 156 - tag: ${{ steps.release.outputs.tag_name }} 164 + tag: ${{ steps.release.outputs.release }} 157 165 158 166 - name: Add Mastodon Redirect to Release 159 167 uses: ncipollo/release-action@v1 ··· 163 171 allowUpdates: true 164 172 replacesArtifacts: false 165 173 omitBodyDuringUpdate: true 166 - tag: ${{ steps.release.outputs.tag_name }} 174 + tag: ${{ steps.release.outputs.release }} 167 175 168 176 - name: Add PeerTube Redirect to Release 169 177 uses: ncipollo/release-action@v1 ··· 173 181 allowUpdates: true 174 182 replacesArtifacts: false 175 183 omitBodyDuringUpdate: true 176 - tag: ${{ steps.release.outputs.tag_name }} 184 + tag: ${{ steps.release.outputs.release }}