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

Chore/refactoring #48

Open
wants to merge 12 commits into
base: baseproject
Choose a base branch
from
Prev Previous commit
Next Next commit
integrate slack webhook for github actions
Ruthvikbr-MM committed Dec 26, 2022
commit dbe6ec70c2cb297b19b527036dd27ab72669ae64
21 changes: 20 additions & 1 deletion .github/workflows/androidworkflow.yaml
Original file line number Diff line number Diff line change
@@ -4,7 +4,18 @@ on: pull_request
jobs:
build_and_deploy_release:
runs-on: ubuntu-latest
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

steps:
- name: Send CI/CD start message on slack
uses: act10ns/slack@v1
id: slack_message_start
with:
status: starting
message: Starting to generate Release build for `build number {{ env.GITHUB_RUN_NUMBER }}` on branch `{{env.GITHUB_HEAD_REF}}`
if: always()

- name: Checkout code
id: checkout_code
uses: actions/checkout@v2
@@ -65,4 +76,12 @@ jobs:
group: Internal
file: ${{ steps.sign_app.outputs.signedReleaseFile }}
notifyTesters: true
debug: true
debug: true

- name: Send CI/CD end message on slack
uses: act10ns/slack@v1
id: slack_message_end
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
if: always()
17 changes: 0 additions & 17 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -35,23 +35,6 @@ android {
}
}

// signingConfigs {
//
// getByName("debug") {
// keyAlias = "praxis-debug"
// keyPassword = "utherNiC"
// storeFile = file("keystore/praxis-debug.jks")
// storePassword = "uRgeSCIt"
// }
//
// create("release") {
// keyAlias = "praxis-release"
// keyPassword = "ITHOmptI"
// storeFile = file("keystore/praxis-release.jks")
// storePassword = "PoTHatHR"
// }
//
// }
buildTypes {
getByName("release") {
isDebuggable = false
Binary file removed app/keystore/praxis-debug.jks
Binary file not shown.
Binary file removed app/keystore/praxis-release.jks
Binary file not shown.