58
58
59
59
contracts-deployment-testnet :
60
60
needs : [contracts-build-and-test]
61
- if : github.event_name == 'workflow_dispatch'
61
+ if : github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request' # TODO: remove PR condition
62
62
runs-on : ubuntu-latest
63
63
steps :
64
64
- uses : actions/checkout@v2
@@ -72,20 +72,25 @@ jobs:
72
72
- name : Install dependencies
73
73
run : yarn install --frozen-lockfile
74
74
75
- - name : Get upstream packages versions
76
- uses : keep-network/ci/actions/upstream-builds-query@v1
77
- id : upstream-builds-query
78
- with :
79
- upstream-builds : ${{ github.event.inputs.upstream_builds }}
80
- query : keep-core-contracts-version = github.com/keep-network/keep-core/solidity-v1#version
75
+ # - name: Get upstream packages versions
76
+ # uses: keep-network/ci/actions/upstream-builds-query@v1
77
+ # id: upstream-builds-query
78
+ # with:
79
+ # upstream-builds: ${{ github.event.inputs.upstream_builds }}
80
+ # query: keep-core-contracts-version = github.com/keep-network/keep-core/solidity-v1#version
81
+
82
+ # - name: Resolve latest contracts
83
+ # run: |
84
+ # yarn upgrade \
85
+ # @keep-network/keep-core@${{ steps.upstream-builds-query.outputs.keep-core-contracts-version }}
81
86
82
87
- name : Resolve latest contracts
83
88
run : |
84
89
yarn upgrade \
85
- @keep-network/keep-core@${{ steps.upstream-builds-query.outputs.keep-core-contracts-version }}
90
+ @keep-network/keep-core@1.8.0-ropsten.13+main.6a98f2b066bc27910ab1715e7d20b7ba3c3ff21e
86
91
87
92
- name : Configure tenderly
88
- if : github.event.inputs.environment == 'ropsten'
93
+ # if: github.event.inputs.environment == 'ropsten' TODO: uncomment
89
94
env :
90
95
TENDERLY_TOKEN : ${{ secrets.TENDERLY_TOKEN }}
91
96
run : ./config_tenderly.sh
@@ -94,20 +99,23 @@ jobs:
94
99
env :
95
100
CHAIN_API_URL : ${{ secrets.KEEP_TEST_ETH_HOSTNAME_HTTP }}
96
101
CONTRACT_OWNER_ACCOUNT_PRIVATE_KEY : ${{ secrets.KEEP_TEST_ETH_CONTRACT_OWNER_PRIVATE_KEY }}
97
- run : yarn deploy --network ${{ github.event.inputs.environment }}
102
+ # run: yarn deploy --network ${{ github.event.inputs.environment }} TODO: uncomment, remove below file
103
+ run : yarn deploy --network ropsten
98
104
99
105
- name : Bump up package version
100
106
id : npm-version-bump
101
107
uses : keep-network/npm-version-bump@v2
102
108
with :
103
- environment : ${{ github.event.inputs.environment }}
109
+ # environment: ${{ github.event.inputs.environment }}
110
+ environment : ropsten
104
111
branch : ${{ github.ref }}
105
112
commit : ${{ github.sha }}
106
113
107
114
- name : Publish to npm # TODO: switch off --dry-run
108
115
env :
109
116
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
110
- run : npm publish --access=public --network=${{ github.event.inputs.environment }} --dry-run
117
+ # run: npm publish --access=public --network=${{ github.event.inputs.environment }} --dry-run TODO: uncomment, remove below
118
+ run : npm publish --access=public --network=ropsten --dry-run
111
119
112
120
- name : Upload files needed for etherscan verification
113
121
uses : actions/upload-artifact@v2
@@ -147,12 +155,16 @@ jobs:
147
155
env :
148
156
ETHERSCAN_API_KEY : ${{ secrets.ETHERSCAN_API_KEY }}
149
157
CHAIN_API_URL : ${{ secrets.KEEP_TEST_ETH_HOSTNAME_HTTP }}
158
+ # run: |
159
+ # yarn run hardhat --network ${{ github.event.inputs.environment }} \
160
+ # etherscan-verify --license MIT
150
161
run : |
151
- yarn run hardhat --network ${{ github.event.inputs.environment }} \
162
+ yarn run hardhat --network ropsten \
152
163
etherscan-verify --license MIT
153
164
154
165
contracts-slither :
155
166
runs-on : ubuntu-latest
167
+ continue-on-error : true # TODO: remove
156
168
steps :
157
169
- uses : actions/checkout@v2
158
170
@@ -183,3 +195,4 @@ jobs:
183
195
184
196
- name : Run Slither
185
197
run : slither .
198
+ # run: slither --hardhat-artifacts-directory build .
0 commit comments