@@ -84,10 +84,11 @@ jobs:
84
84
echo "MULTISIG_VAULT=${{ secrets.DEVNET_MULTISIG_VAULT }}" >> $GITHUB_ENV
85
85
fi
86
86
87
- - uses : ./.github/actions/extract-versions/
88
- id : versions
87
+ - name : Extract Versions
88
+ uses : Woody4618/github-action/.github/actions/extract- versions@v0.1.0
89
89
90
- - uses : ./.github/actions/setup/
90
+ - name : Setup Environment
91
+ uses :
Woody4618/github-action/.github/actions/[email protected]
91
92
92
93
- name : Debug Environment Before Anchor Setup
93
94
run : |
@@ -96,10 +97,10 @@ jobs:
96
97
echo "==========================="
97
98
98
99
- name : Install Solana
99
- uses : ./ .github/actions/setup-solana
100
+ uses : Woody4618/github-action/ .github/actions/setup-solana@v0.1.0
100
101
101
102
- name : Install Anchor
102
- uses : ./ .github/actions/setup-anchor
103
+ uses : Woody4618/github-action/ .github/actions/setup-anchor@v0.1.0
103
104
with :
104
105
anchor-version : ${{ env.ANCHOR_VERSION }}
105
106
@@ -146,13 +147,15 @@ jobs:
146
147
echo "Anchor.toml contents:"
147
148
cat Anchor.toml
148
149
149
- - uses : ./.github/actions/build-anchor/
150
+ - name : Build Anchor
151
+ uses :
Woody4618/github-action/.github/actions/[email protected]
150
152
with :
151
153
testing : false
152
154
devnet : ${{ inputs.network == 'devnet' }}
153
155
program : ${{ env.PROGRAM_NAME }}
154
156
155
- - uses : ./.github/actions/build-verified/
157
+ - name : Build Verified
158
+ uses :
Woody4618/github-action/.github/actions/[email protected]
156
159
id : build-verified
157
160
with :
158
161
verify-version : ${{ env.SOLANA_VERIFY_VERSION }}
@@ -209,7 +212,8 @@ jobs:
209
212
echo "SO file: ./artifacts/build/${{ env.PROGRAM_NAME }}-so/target/deploy/${{ env.PROGRAM_NAME }}.so"
210
213
echo "IDL file: ./artifacts/build/${{ env.PROGRAM_NAME }}-idl/target/idl/${{ env.PROGRAM_NAME }}.json"
211
214
212
- - uses : ./.github/actions/write-program-buffer/
215
+ - name : Write Program Buffer
216
+ uses :
Woody4618/github-action/.github/actions/[email protected]
213
217
id : program-buffer
214
218
if : inputs.deploy == 'true'
215
219
with :
@@ -219,7 +223,8 @@ jobs:
219
223
keypair : ${{ env.DEPLOYER_KEYPAIR }}
220
224
buffer-authority-address : ${{ inputs.use-squads == 'true' && env.MULTISIG_VAULT || env.DEPLOYER_ADDRESS }}
221
225
222
- - uses : ./.github/actions/write-idl-buffer/
226
+ - name : Write IDL Buffer
227
+ uses :
Woody4618/github-action/.github/actions/[email protected]
223
228
id : idl-buffer
224
229
if : inputs.upload_idl == 'true'
225
230
with :
@@ -229,7 +234,8 @@ jobs:
229
234
keypair : ${{ env.DEPLOYER_KEYPAIR }}
230
235
idl-authority : ${{ inputs.use-squads == 'true' && env.MULTISIG_VAULT || env.DEPLOYER_ADDRESS }}
231
236
232
- - uses : ./.github/actions/program-upgrade/
237
+ - name : Program Upgrade
238
+ uses :
Woody4618/github-action/.github/actions/[email protected]
233
239
if : inputs.deploy == 'true' && inputs.use-squads == 'false'
234
240
with :
235
241
program-id : ${{ env.PROGRAM_ID }}
@@ -239,15 +245,17 @@ jobs:
239
245
keypair : ${{ env.DEPLOYER_KEYPAIR }}
240
246
program-keypair : ${{ secrets.PROGRAM_ADDRESS_KEYPAIR }}
241
247
242
- - uses : ./.github/actions/idl-upload/
248
+ - name : IDL Upload
249
+ uses :
Woody4618/github-action/.github/actions/[email protected]
243
250
if : inputs.upload_idl == 'true' && inputs.use-squads == 'false'
244
251
with :
245
252
program-id : ${{ env.PROGRAM_ID }}
246
253
rpc-url : ${{ env.DEPLOY_URL }}
247
254
keypair : ${{ env.DEPLOYER_KEYPAIR }}
248
255
idl-buffer : ${{ steps.idl-buffer.outputs.buffer }}
249
256
250
- - uses : ./.github/actions/verify-build/
257
+ - name : Verify Build
258
+ uses :
Woody4618/github-action/.github/actions/[email protected]
251
259
id : verify-build
252
260
if : inputs.verify == 'true'
253
261
with :
0 commit comments