File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -75,13 +75,36 @@ jobs:
7575 with :
7676 ref : ${{ env.BRANCH_NAME }}
7777
78+ # using git commit sha for version of action to ensure we have stable version
79+ - name : Install asdf
80+ uses : asdf-vm/actions/setup@05e0d2ed97b598bfce82fd30daf324ae0c4570e6
81+ with :
82+ asdf_branch : v0.14.1
83+
84+ - name : Cache asdf
85+ uses : actions/cache@v4
86+ with :
87+ path : |
88+ ~/.asdf
89+ key : ${{ runner.os }}-asdf-${{ hashFiles('**/.tool-versions') }}
90+ restore-keys : |
91+ ${{ runner.os }}-asdf-
92+
93+ - name : Install asdf dependencies in .tool-versions
94+ uses : asdf-vm/actions/install@05e0d2ed97b598bfce82fd30daf324ae0c4570e6
95+ with :
96+ asdf_branch : v0.14.1
97+ env :
98+ PYTHON_CONFIGURE_OPTS : --enable-shared
99+
78100 - name : Install dependencies
79101 run : |
80102 make install
81103
82104 - name : Package code
83105 run : |
84106 make package
107+
85108 - uses : actions/upload-artifact@v4
86109 name : Upload packaged code
87110 with :
You can’t perform that action at this time.
0 commit comments