We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, It's possible to optionally add a single environment.
- uses: actions/checkout@v2 - name: Create Sentry release uses: getsentry/action-release@v1 env: . . . with: environment: production #<<<
It would be great to be able to add multiple environments for example:
with: environments: [production, staging]
Or:
with: environments: - production - staging - ...
The only way to achieve this kind of behavior now is to have it all twice, which is a pain. Especially if you want to be specific.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, It's possible to optionally add a single environment.
It would be great to be able to add multiple environments for example:
Or:
The only way to achieve this kind of behavior now is to have it all twice, which is a pain. Especially if you want to be specific.
The text was updated successfully, but these errors were encountered: