I have two workflows. The first workflow (Release) starts and ends with
on:
push:
branches:
- main
[...]
- name: Release
run: yarn semantic-release
The second workflow (Build) starts with
on:
push:
branches:
- main
tags:
- '*'
When I run git push
on the main
branch I would expect 1) the first and second workflow to run immediately and 2) the second workflow to run a second time after the first workflow has finished, because semantic-release
pushes a new tag. But 2) never happens.