.github: fix flakehub-publish-tagged.yml glob (#9066)

The previous regex was too advanced for GitHub Actions. They only
support a simpler glob syntax.

https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet

Updates #9008

Signed-off-by: Shayne Sweeney <shayne@tailscale.com>
pull/9067/head
shayne 9 months ago committed by GitHub
parent 5b6a90fb33
commit 7825074444
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,8 +1,10 @@
name: update-flakehub
on:
workflow_dispatch:
push:
tags:
- '^v[0-9]+\.[0-9]*[02468]+\.[0-9]+$'
- "v[0-9]+.*[02468].[0-9]+"
jobs:
publish:
runs-on: "ubuntu-latest"

Loading…
Cancel
Save