File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 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
22
33on : [push, pull_request]
44
5+ env :
6+ PACKAGE_INDEX_PATH : /tmp/micropython-lib-deploy
7+
58jobs :
69 build :
710 runs-on : ubuntu-latest
1720 - name : Publish packages for branch
1821 if : vars.MICROPY_PUBLISH_MIP_INDEX && github.event_name == 'push' && ! github.event.deleted
1922 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 11#! /bin/bash
22
3- # #######################################################################################
4- # common "constants"
5- PACKAGE_INDEX_PATH=/tmp/micropython-lib-deploy
6-
73# #######################################################################################
84# code formatting
95
You can’t perform that action at this time.
0 commit comments