Skip to content

Commit

Permalink
ci: replace deprecated deploy step with run
Browse files Browse the repository at this point in the history
  • Loading branch information
evant committed Apr 17, 2024
1 parent 0836bdb commit 8791305
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ jobs:
- gradle/collect_test_results:
test_results_path: build/test-results
reports_path: build/reports
- deploy:
- run:
name: Deploy
command: |
if [ "${CIRCLE_BRANCH}" == "main" ]; then
echo "$MAVEN_CENTRAL_SEC_RING" | base64 -d > $HOME/secring.gpg
Expand Down Expand Up @@ -69,7 +70,8 @@ jobs:
- run:
name: Build Apple
command: ./gradlew buildApple
- deploy:
- run:
name: Deploy
command: |
if [ "${CIRCLE_BRANCH}" == "main" ]; then
echo "$MAVEN_CENTRAL_SEC_RING" | base64 -D -o $HOME/secring.gpg
Expand Down

0 comments on commit 8791305

Please sign in to comment.