I have continuous deployment set up, which is fantastic. I’d like to make it so that our dev’s can trigger a deployment block by just tagging and pushing said tag to their github repo.
The below deployment snippet picks up the tag, but only if it is pushed to the main repo. Is it possible for circlci to pick up the tag if it is pushed to a forked repo? We are building pull requests from forked repos currently.
`
deployment:
dev:
tag: /push-staging-.+/
commands:
- ./deploy-scripts/deploy.sh
staging:
branch: staging
owner: owner
commands:
- ./deploy-scripts/deploy.sh
production:
tag: /release-.*/
owner: owner
commands:
- ./deploy-scripts/deploy.sh
`