File tree 2 files changed +13
-4
lines changed
template/base/.github/workflows
2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " create-solana-program " : patch
3
+ ---
4
+
5
+ Cache and restore external accounts
Original file line number Diff line number Diff line change @@ -92,10 +92,12 @@ jobs:
92
92
path: ./target/deploy/*.so
93
93
if-no-files-found: error
94
94
95
- - name: Save Program Builds For Client Jobs
95
+ - name: Save Client Artifacts
96
96
uses: actions/cache/save@v4
97
97
with:
98
- path: ./**/*.so
98
+ path: |
99
+ ./**/*.so
100
+ ./target/deploy/*.json
99
101
key: {% raw %} ${{ runner.os }}-builds-${{ github.sha }}{% endraw %}
100
102
101
103
test_programs:
@@ -182,10 +184,12 @@ jobs:
182
184
with:
183
185
solana: true
184
186
185
- - name: Restore Program Builds
187
+ - name: Restore Client Artifacts
186
188
uses: actions/cache/restore@v4
187
189
with:
188
- path: ./**/*.so
190
+ path: |
191
+ ./**/*.so
192
+ ./target/deploy/*.json
189
193
key: {% raw %} ${{ runner.os }}-builds-${{ github.sha }}{% endraw %}
190
194
191
195
- name: Test Client JS
You can’t perform that action at this time.
0 commit comments