From eb962cfdb3188797db25d120ddd93b58b612e404 Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Thu, 17 Dec 2020 22:51:57 +0300 Subject: [PATCH] ci(release): Run Craft on the host, not in Docker (#3130) Fixes #3128. #skip-changelog --- .github/workflows/release.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 72e172b51fc4..6ce739220fa8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,4 +1,4 @@ -name: release +name: Prepare Release on: workflow_dispatch: inputs: @@ -22,11 +22,8 @@ jobs: with: token: ${{ secrets.GH_RELEASE_PAT }} fetch-depth: 0 - - uses: getsentry/craft@master - name: Craft Prepare - with: - action: prepare - version: ${{ env.RELEASE_VERSION }} + - name: Craft Prepare + run: npx @sentry/craft prepare --no-input "${{ env.RELEASE_VERSION }}" - name: Request publish if: success() uses: actions/github-script@v3