Hi,
This is the beginning of the workflow ".github/workflows/build.yml". As you see
-------------------------------------
name: Build & Test
on:
pull_request:
push:
branches: ['**']
# Ignore pushes on tags to prevent two uploads of codecov reports
tags-ignore: ['**']
workflow_dispatch:
# Allow to run manually
....
....
-----------------------------------
the workflow does not run on a tag push. For instance, the workflow did not run on the recent push of "sage 10.1.rc0".
Could we remove "tags-ignore" part so that the workflow runs for fresh check of a new beta? Of course, the problem of "two uploads of codecov reports" should be solved in other means (I hope there is one).