Skip to content

Deprecate MPS backend (#18470) #1

Deprecate MPS backend (#18470)

Deprecate MPS backend (#18470) #1

name: Android Release on Tag
on:
push:
tags:
- 'v*.*.*-rc*'
- 'v*.*.*'
jobs:
prepare:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.get-version.outputs.version }}
steps:
- id: get-version
run: echo "version=${GITHUB_REF_NAME#v}" >> $GITHUB_OUTPUT
release-xnnpack:

Check failure on line 18 in .github/workflows/android-release-on-tag.yml

View workflow run for this annotation

GitHub Actions / Android Release on Tag

Invalid workflow file

The workflow is not valid. .github/workflows/android-release-on-tag.yml (Line: 18, Col: 3): Error calling workflow 'pytorch/executorch/.github/workflows/android-release-artifacts.yml@9a7dab9b069f5ff8799d915619228c9be3252184'. The nested job 'build-aar' is requesting 'id-token: write', but is only allowed 'id-token: none'. .github/workflows/android-release-on-tag.yml (Line: 18, Col: 3): Error calling workflow 'pytorch/executorch/.github/workflows/android-release-artifacts.yml@9a7dab9b069f5ff8799d915619228c9be3252184'. The nested job 'upload-release-aar' is requesting 'id-token: write', but is only allowed 'id-token: none'.

Check failure on line 18 in .github/workflows/android-release-on-tag.yml

View workflow run for this annotation

GitHub Actions / Android Release on Tag

Invalid workflow file

The workflow is not valid. .github/workflows/android-release-on-tag.yml (Line: 18, Col: 3): Error calling workflow 'pytorch/executorch/.github/workflows/android-release-artifacts.yml@9a7dab9b069f5ff8799d915619228c9be3252184'. The nested job 'build-aar' is requesting 'id-token: write', but is only allowed 'id-token: none'. .github/workflows/android-release-on-tag.yml (Line: 18, Col: 3): Error calling workflow 'pytorch/executorch/.github/workflows/android-release-artifacts.yml@9a7dab9b069f5ff8799d915619228c9be3252184'. The nested job 'upload-release-aar' is requesting 'id-token: write', but is only allowed 'id-token: none'.
needs: prepare
uses: ./.github/workflows/android-release-artifacts.yml
secrets: inherit
with:
version: ${{ needs.prepare.outputs.version }}
flavor: xnnpack
upload_to_maven: true
release-vulkan:
needs: prepare
uses: ./.github/workflows/android-release-artifacts.yml
secrets: inherit
with:
version: ${{ needs.prepare.outputs.version }}
flavor: vulkan
upload_to_maven: true
release-qnn:
needs: prepare
uses: ./.github/workflows/android-release-artifacts.yml
secrets: inherit
with:
version: ${{ needs.prepare.outputs.version }}
flavor: qnn
upload_to_maven: true