We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b770c31 commit 69dfa2fCopy full SHA for 69dfa2f
1 file changed
.github/workflows/main.yml
@@ -264,3 +264,22 @@ jobs:
264
version: ${{ needs.release_meta.outputs.tag_name }}
265
secrets:
266
token: ${{ secrets.HOMEBREW_BUMP_DISPATCH_PAT }}
267
+
268
+ publish_aur:
269
+ name: Publish AUR (${{ matrix.package }})
270
+ needs:
271
+ - publish_collect
272
+ - release_meta
273
+ if: needs.release_meta.outputs.is_versioned == 'true'
274
+ strategy:
275
+ fail-fast: false
276
+ matrix:
277
+ package:
278
+ - things3-cloud
279
+ - things3-cloud-bin
280
+ uses: evanpurkhiser/workflows/.github/workflows/bump-aur.yml@main
281
+ with:
282
+ package: ${{ matrix.package }}
283
+ version: ${{ needs.release_meta.outputs.tag_name }}
284
+ secrets:
285
+ token: ${{ secrets.AUR_BUMP_DISPATCH_PAT }}
0 commit comments