Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add GitBoard GH action in pipeline #40

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .bitrise-with-ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ trigger_map:
workflows:
primary:
steps:
- activate-ssh-key@4.0.3:
- activate-ssh-key@4.1.0:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- git-clone@4.0.12: {}
- install-missing-android-tools@2.2.0: {}
- git-clone@8.1.1: {}
- install-missing-android-tools@3.2.0: {}
- [email protected]:
title: Gradle Build/Test/Analyse/Distribute
inputs:
Expand All @@ -28,12 +28,12 @@ workflows:
- coveralls_task: coveralls -PversionCode=$BITRISE_BUILD_NUMBER -PfabricApiKey=$FABRIC_API_KEY
-PfabricApiSecret=$FABRIC_API_SECRET
- coveralls_repo_token: "$COVERALLS_REPO_TOKEN"
- deploy-to-bitrise-io@1.3.18:
- deploy-to-bitrise-io@2.5.0:
title: Deploy test reports to Bitrise.io
inputs:
- deploy_path: "$BITRISE_SOURCE_DIR/app/build/reports/jacocoTestReport/"
- notify_email_list: ''
- deploy-to-bitrise-io@1.3.18:
- deploy-to-bitrise-io@2.5.0:
title: Deploy APK to Bitrise.io
app:
envs:
Expand Down
12 changes: 6 additions & 6 deletions .bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ trigger_map:
workflows:
primary:
steps:
- activate-ssh-key@4.0.3:
- activate-ssh-key@4.1.0:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- git-clone@4.0.12: {}
- install-missing-android-tools@2.2.0: {}
- script@1.1.5:
- git-clone@8.1.1: {}
- install-missing-android-tools@3.2.0: {}
- script@1.2.1:
inputs:Switched to shell script from Gradle runner at bitrise (#36)
- content: |-
#!/usr/bin/env bash
Expand All @@ -39,12 +39,12 @@ workflows:
- coveralls_task: coveralls -PversionCode=$BITRISE_BUILD_NUMBER -PfabricApiKey=$FABRIC_API_KEY
-PfabricApiSecret=$FABRIC_API_SECRET
- coveralls_repo_token: "$COVERALLS_REPO_TOKEN"
- deploy-to-bitrise-io@1.3.18:
- deploy-to-bitrise-io@2.5.0:
title: Deploy test reports to Bitrise.io
inputs:
- deploy_path: "$BITRISE_SOURCE_DIR/app/build/reports/jacocoTestReport/"
- notify_email_list: ''
- deploy-to-bitrise-io@1.3.18:
- deploy-to-bitrise-io@2.5.0:
title: Deploy APK to Bitrise.io
app:
envs:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: gitboard-io/gitboard-action@main
with:
username: ${{ secrets.GITBOARD_USERNAME }}
key: ${{ secrets.GITBOARD_SECRET_TOKEN }}
- uses: actions/checkout@v1
- name: Build
uses: vgaidarji/[email protected]
Expand Down