File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ name: Build all packages
2
2
3
3
on : [push, pull_request]
4
4
5
+ env :
6
+ PACKAGE_INDEX_PATH : /tmp/micropython-lib-deploy
7
+
5
8
jobs :
6
9
build :
7
10
runs-on : ubuntu-latest
17
20
- name : Publish packages for branch
18
21
if : vars.MICROPY_PUBLISH_MIP_INDEX && github.event_name == 'push' && ! github.event.deleted
19
22
run : source tools/ci.sh && ci_push_package_index
23
+ - name : Upload packages as artifact
24
+ uses : actions/upload-artifact@v3
25
+ with :
26
+ name : packages-${{ github.sha }}
27
+ path : ${{ env.PACKAGE_INDEX_PATH }}
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- # #######################################################################################
4
- # common "constants"
5
- PACKAGE_INDEX_PATH=/tmp/micropython-lib-deploy
6
-
7
3
# #######################################################################################
8
4
# code formatting
9
5
You can’t perform that action at this time.
0 commit comments