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

Unexpected input(s) 'version_prefix'

Open snasirca opened this issue 3 years ago • 0 comments

Environment

How do you use Sentry?

Sentry SaaS (sentry.io)

Which SDK and version?

gem "sentry-rails", "4.3.2"
gem "sentry-ruby", "4.3.1"

Steps to Reproduce

  1. Set up Sentry Release GitHub Action with this:
name: Build

on:
  push:
    branches: [main]

jobs:
  build:
    name: Build
    runs-on: ubuntu-latest
    steps:
      - name: Checkout the latest code
        uses: actions/checkout@v2
      - name: Notify Sentry of Build
        uses: getsentry/[email protected]
        env:
          SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
          SENTRY_ORG: nulogy
          SENTRY_PROJECT: opscore
        with:
          version_prefix: opscore@
  1. Trigger GitHub Action by pushing to main

Expected Result

No warnings

Actual Result

Warning message in the GitHub Action: image

The version prefix seems to be getting through though because I see it in the Releases page in Sentry: image

snasirca avatar Mar 30 '21 17:03 snasirca