Added androidx.compose.animation otherwise build is crashed #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Release | ||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
jobs: | ||
create-release-notes: | ||
uses: ./.github/workflows/create-release-notes.yml | ||
secrets: inherit | ||
build-signed-bundle: | ||
uses: ./.github/workflows/build-signed-bundle.yml | ||
needs: create-release-notes | ||
secrets: inherit | ||
create-github-release: | ||
uses: ./.github/workflows/create-github-release.yml | ||
needs: build-signed-bundle | ||
secrets: inherit | ||
deploy-to-production-track: | ||
uses: ./.github/workflows/deploy-to-closed-track.yml | ||
Check failure on line 28 in .github/workflows/deploy.yml
|
||
needs: build-signed-bundle | ||
secrets: inherit |