-
Notifications
You must be signed in to change notification settings - Fork 1
85 lines (85 loc) · 2.67 KB
/
pr_test_when_merged.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: Test Pipeline for Merged PR
on:
pull_request:
branches: [ master, develop ]
types: [ closed ]
concurrency:
group: ${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
dump_github_context:
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
run_test_on_develop_branch:
if: ${{ github.base_ref == 'develop' && github.event.pull_request.merged == true }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run test
uses: ./
id: test-pipeline
with:
environment: 'dev'
run_test_on_master_branch:
if: ${{ github.base_ref == 'master' && github.event.pull_request.merged == true }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run test
uses: ./
id: test-pipeline
publish:
needs: run_test_on_master_branch
if: ${{ startsWith(github.head_ref, 'release/') && (github.base_ref == 'master') && (github.event.pull_request.merged == true) }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: yarn
- name: Publish package
run: |
yarn build
yarn publish --access public
echo "NEW_VERSION=$(npm pkg get version | tr -d '"')" >> $GITHUB_ENV
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
- name: Push tag
run: |
git tag v${{ env.NEW_VERSION }}
git push --tags
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Notify package published to slack
uses: slackapi/[email protected]
with:
payload: |
{
"text": "Ain-js ${{ env.NEW_VERSION }} is published",
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Ain-js Release"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Version ${{ env.NEW_VERSION }} is published on <https://www.npmjs.com/package/@ainblockchain/ain-js|npmjs.com>"
}
}
]
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK