diff --git a/.github/actions/create-release-number/action.yml b/.github/actions/create-release-number/action.yml index f88c997c1..6d28028e0 100644 --- a/.github/actions/create-release-number/action.yml +++ b/.github/actions/create-release-number/action.yml @@ -32,5 +32,5 @@ runs: echo Number Tags $TAGS echo Version $VERSION echo Version Code $VC - echo ::set-output name=version::$VERSION - echo ::set-output name=version-code::$VC + echo "version=$VERSION" >> $GITHUB_OUTPUT + echo "version-code=$VC" >> $GITHUB_OUTPUT diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index c3150a499..867d9f0bb 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -112,11 +112,11 @@ jobs: run: ./gradlew appDistributionUploadFullRelease - name: Create a Sentry.io release - uses: tclindner/sentry-releases-action@v1.2.0 + uses: getsentry/action-release@v1 env: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_ORG: ${{ secrets.SENTRY_ORG }} SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }} with: - tagName: io.homeassistant.companion.android@${{ steps.rel_number.outputs.version }} + version: ${{ steps.rel_number.outputs.version }} environment: Beta diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 7e579727b..db010ab6e 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -112,6 +112,6 @@ jobs: fi - name: Archive Debug Build - uses: kittaakos/upload-artifact-as-is@v0 + uses: actions/upload-artifact@v3 with: path: ./**/*.apk diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7c2480170..deace7cba 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -128,13 +128,13 @@ jobs: run: ./gradlew appDistributionUploadFullRelease - name: Create a Sentry.io release - uses: tclindner/sentry-releases-action@v1.2.0 + uses: getsentry/action-release@v1 env: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_ORG: ${{ secrets.SENTRY_ORG }} SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }} with: - tagName: io.homeassistant.companion.android@${{ steps.rel_number.outputs.version }} + version: ${{ steps.rel_number.outputs.version }} environment: Production play_publish: