|
| 1 | +name: Generate Release Tag |
| 2 | + |
| 3 | +on: |
| 4 | + repository_dispatch: |
| 5 | + types: [create-release-tag] |
| 6 | + |
| 7 | +jobs: |
| 8 | + testing: |
| 9 | + runs-on: ubuntu-latest |
| 10 | + strategy: |
| 11 | + matrix: |
| 12 | + node: |
| 13 | + - "18.0" |
| 14 | + - "19.0" |
| 15 | + - "20.0" |
| 16 | + |
| 17 | + steps: |
| 18 | + - name: Checkout repository |
| 19 | + uses: actions/checkout@v4 |
| 20 | + |
| 21 | + - name: Setup node |
| 22 | + uses: actions/setup-node@v3 |
| 23 | + with: |
| 24 | + node-version: ${{ matrix.node }} |
| 25 | + |
| 26 | + - name: Print node version |
| 27 | + run: node -v |
| 28 | + |
| 29 | + - name: Install dependencies |
| 30 | + run: npm install |
| 31 | + |
| 32 | + - name: Linting |
| 33 | + run: npm run lint |
| 34 | + |
| 35 | + - name: Testing |
| 36 | + run: DEVELOPMENT_API_KEY=${{ secrets.DEVELOPMENT_API_KEY }} BUSINESS_ID=${{ secrets.BUSINESS_ID }} npm run test |
| 37 | + |
| 38 | + send-test-result: |
| 39 | + name: Slack Notification |
| 40 | + needs: [testing] |
| 41 | + if: always() && (needs.testing.result == 'success' || needs.testing.result == 'failure') |
| 42 | + runs-on: ubuntu-latest |
| 43 | + steps: |
| 44 | + - uses: actions/checkout@v3 |
| 45 | + |
| 46 | + - name: Set Slack Color |
| 47 | + id: set_color |
| 48 | + run: | |
| 49 | + if [ "${{ needs.testing.result }}" == "success" ]; then |
| 50 | + echo "color=good" >> $GITHUB_ENV |
| 51 | + else |
| 52 | + echo "color=danger" >> $GITHUB_ENV |
| 53 | + fi |
| 54 | +
|
| 55 | + - name: Send Slack Notification |
| 56 | + uses: rtCamp/action-slack-notify@v2 |
| 57 | + env: |
| 58 | + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} |
| 59 | + SLACK_TITLE: "[xendi-node] CI pipeline for ${{ github.event.client_payload.version }}" |
| 60 | + SLACK_MESSAGE: 'Test Result: ${{ needs.testing.result }}' |
| 61 | + SLACK_COLOR: ${{ steps.set_color.outputs.color }} |
| 62 | + |
| 63 | + publish: |
| 64 | + runs-on: ubuntu-latest |
| 65 | + needs: [testing] |
| 66 | + steps: |
| 67 | + - uses: actions/checkout@v4 |
| 68 | + |
| 69 | + - name: Set the value in bash |
| 70 | + id: parse-changelog |
| 71 | + run: | |
| 72 | + echo "changelog<<EOF" >> "$GITHUB_OUTPUT" |
| 73 | + echo "${{ github.event.client_payload.changelog }}" | sed -e 's/%0A/\n/g' >> "$GITHUB_OUTPUT" |
| 74 | + echo "EOF" >> "$GITHUB_OUTPUT" |
| 75 | +
|
| 76 | + - name: Create Release |
| 77 | + id: create-release |
| 78 | + uses: actions/create-release@latest |
| 79 | + env: |
| 80 | + GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }} |
| 81 | + with: |
| 82 | + tag_name: ${{ github.event.client_payload.version }} |
| 83 | + release_name: ${{ github.event.client_payload.version }} |
| 84 | + body: ${{ steps.parse-changelog.outputs.changelog }} |
| 85 | + draft: false |
| 86 | + prerelease: false |
| 87 | + |
| 88 | + - uses: actions/checkout@v4 |
| 89 | + |
| 90 | + - uses: actions/setup-node@v3 |
| 91 | + with: |
| 92 | + node-version: ${{ matrix.node }} |
| 93 | + registry-url: 'https://registry.npmjs.org' |
| 94 | + |
| 95 | + - run: npm run custom-publish |
| 96 | + env: |
| 97 | + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
0 commit comments