diff --git a/.github/workflows/pbrp-organization-ci.yml b/.github/workflows/pbrp-organization-ci.yml index b0d8a32..8a17167 100644 --- a/.github/workflows/pbrp-organization-ci.yml +++ b/.github/workflows/pbrp-organization-ci.yml @@ -16,12 +16,12 @@ env: CHANGELOG: ${{ github.event.inputs.ChangeLogs }} BOT_API: ${{ secrets.BOT_API }} GCF_AUTH_KEY: ${{ secrets.GCF_AUTH_KEY }} - GH_BOT_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GH_BOT_TOKEN: ${{ secrets.GH_BOT_TOKEN }} GitHubMail: ${{ secrets.GitHubMail }} GitHubName: ${{ secrets.GitHubName }} SFPassword: ${{ secrets.SFPassword }} SFUserName: ${{ secrets.SFUserName }} - #TARGET: "define this if your target is not recoveryimage" + TARGET: "pbrp" #EXTRA_CMD: "Extra Commands Here" jobs: @@ -30,10 +30,8 @@ jobs: runs-on: ubuntu-20.04 steps: - - name: Cleaning Up Runner - uses: rokibhasansagar/slimhub_actions@main - - name: Auto Adapt Manifest + # /* if your branch name is other than the one which you dispatched workflow from then set it manually in the place of ${GITHUB_REF##*/}" */ run: echo "MANIFEST=https://github.com/PitchBlackRecoveryProject/manifest_pb -b ${GITHUB_REF##*/}" >> $GITHUB_ENV - name: Export Vars @@ -41,9 +39,25 @@ jobs: if [[ ${BUILD_RELEASE_TYPE} == "TEST" ]]; then echo "TEST_BUILD=true" >> $GITHUB_ENV;fi if [[ ${BUILD_RELEASE_TYPE} == "BETA" ]]; then echo "BETA_BUILD=true" >> $GITHUB_ENV;fi if [[ ${BUILD_RELEASE_TYPE} == "OFFICIAL" ]]; then echo "PB_OFFICIAL=true" >> $GITHUB_ENV;fi + - name: Checkout Cleaning Up Runner Repo + uses: actions/checkout@v2 + with: + repository: PitchBlackRecoveryProject/Cleaner + ref: main + token: ${{ secrets.GH_BOT_TOKEN }} + path: .github/actions/Cleaner + - name: Cleaning + uses: ./.github/actions/Cleaner + - name: Checkout Recovery Compiler Repo + uses: actions/checkout@v2 + with: + repository: PitchBlackRecoveryProject/Compiler + ref: production + token: ${{ secrets.GH_BOT_TOKEN }} + path: .github/actions/Compiler - name: Recovery Compilation - uses: Carbonatedblack/Recovery-Compiler@production + uses: ./.github/actions/Compiler - name: Release Builds run: |