action-release icon indicating copy to clipboard operation
action-release copied to clipboard

More examples

Open jensenbox opened this issue 5 years ago • 2 comments

I think it would be great to show more samples of how to transition from the cli usage over to the action usage.

Especially the use case where you open a release and finalize it.

        run: |
          export SENTRY_RELEASE=$(sentry-cli releases propose-version)
          sentry-cli releases new -p $SENTRY_PROJECT $SENTRY_RELEASE
          sentry-cli releases set-commits --auto $SENTRY_RELEASE
          echo "::set-env name=SENTRY_RELEASE::$SENTRY_RELEASE"

and

      - name: Sentry deploy
        run: |
          sentry-cli releases finalize $SENTRY_RELEASE
          sentry-cli releases deploys $SENTRY_RELEASE new -e $SENTRY_DEPLOY_ENVIRONMENT

jensenbox avatar Jul 30 '20 22:07 jensenbox

Another example that would be useful is the fact that you can set SENTRY_URL as an environment variable to point the tool at on-prem instances of Sentry.

nogweii avatar Jul 27 '21 17:07 nogweii

Another example that would be useful is the fact that you can set SENTRY_URL as an environment variable to point the tool at on-prem instances of Sentry.

@nogweii - I have created an issue for that specifically. #76

kimegede avatar Nov 25 '21 08:11 kimegede