|
7 | 7 | publish:
|
8 | 8 | runs-on: ubuntu-latest
|
9 | 9 |
|
| 10 | + outputs: |
| 11 | + release_number: ${{steps.get_latest_release_number.outputs.release_tag}} |
| 12 | + permissions: |
| 13 | + contents: write |
| 14 | + pull-requests: write |
| 15 | + |
10 | 16 | steps:
|
11 | 17 | - name: Checkout Xero-Java repo
|
12 | 18 | uses: actions/checkout@v4
|
|
25 | 31 | server-password: MAVEN_PASSWORD
|
26 | 32 | gpg-passphrase: GPG_PASSPHRASE
|
27 | 33 |
|
| 34 | + - name: Fetch Latest release number |
| 35 | + id: get_latest_release_number |
| 36 | + run: | |
| 37 | + latest_version=$(gh release view --json tagName --jq '.tagName') |
| 38 | + echo "Latest release version is - $latest_version" |
| 39 | + echo "::set-output name=release_tag::$latest_version" |
| 40 | + working-directory: Xero-Java |
| 41 | + env: |
| 42 | + GH_TOKEN: ${{secrets.GITHUB_TOKEN}} |
| 43 | + |
28 | 44 | - name: Import GPG Key
|
29 | 45 | run: |
|
30 | 46 | echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --import
|
|
40 | 56 | MAVEN_PASSWORD: ${{ secrets.MAVEN_TOKEN }}
|
41 | 57 | GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
|
42 | 58 | working-directory: Xero-Java
|
| 59 | + |
| 60 | + notify-slack-on-success: |
| 61 | + runs-on: ubuntu-latest |
| 62 | + needs: publish |
| 63 | + if: success() |
| 64 | + steps: |
| 65 | + - name: Checkout Xero-Java repo |
| 66 | + uses: actions/checkout@v4 |
| 67 | + with: |
| 68 | + repository: XeroAPI/Xero-Java |
| 69 | + path: Xero-Java |
| 70 | + |
| 71 | + - name: Send slack notification on success |
| 72 | + uses: ./Xero-Java/.github/actions/notify-slack |
| 73 | + with: |
| 74 | + heading_text: "Publish job has succeeded !" |
| 75 | + alert_type: "thumbsup" |
| 76 | + job_status: "Success" |
| 77 | + XERO_SLACK_WEBHOOK_URL: ${{secrets.XERO_SLACK_WEBHOOK_URL}} |
| 78 | + job_url: "https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}" |
| 79 | + button_type: "primary" |
| 80 | + package_version: ${{needs.publish.outputs.release_number}} |
| 81 | + repo_link: ${{github.server_url}}/${{github.repository}} |
| 82 | + |
| 83 | + notify-slack-on-failure: |
| 84 | + runs-on: ubuntu-latest |
| 85 | + needs: publish |
| 86 | + if: failure() |
| 87 | + steps: |
| 88 | + - name: Checkout Xero-Java repo |
| 89 | + uses: actions/checkout@v4 |
| 90 | + with: |
| 91 | + repository: XeroAPI/Xero-Java |
| 92 | + path: Xero-Java |
| 93 | + |
| 94 | + - name: Send slack notification on failure |
| 95 | + uses: ./Xero-Java/.github/actions/notify-slack |
| 96 | + with: |
| 97 | + heading_text: "Publish job has failed !" |
| 98 | + alert_type: "alert" |
| 99 | + job_status: "Failed" |
| 100 | + XERO_SLACK_WEBHOOK_URL: ${{secrets.XERO_SLACK_WEBHOOK_URL}} |
| 101 | + job_url: "https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}" |
| 102 | + button_type: "danger" |
| 103 | + package_version: ${{needs.publish.outputs.release_number}} |
| 104 | + repo_link: ${{github.server_url}}/${{github.repository}} |
0 commit comments