The current Deploy workflow trigger was looking for a push to a tag branch. It doesn't seem like the way that the Semantic Release GitHub Action works is pushing the changes to a tag (must be creating the tag some other way). The changes here are to try and trigger the Deploy workflow from a successful finish of the Release workflow instead. Changes include
Change the on trigger in Deploy workflow to workflow_run instead of push
Adding check to see if 'workflow_run` was a success
The current Deploy workflow trigger was looking for a push to a tag branch. It doesn't seem like the way that the Semantic Release GitHub Action works is pushing the changes to a tag (must be creating the tag some other way). The changes here are to try and trigger the Deploy workflow from a successful finish of the Release workflow instead. Changes include
on
trigger in Deploy workflow toworkflow_run
instead ofpush
Closes #69