We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 128a291 commit b37e4beCopy full SHA for b37e4be
1 file changed
intel-sde-install/action.yaml
@@ -0,0 +1,16 @@
1
+name: "intel-sde-install"
2
+description: "Install Intel SDE"
3
+inputs:
4
+ sde-full-version:
5
+ description: "SDE full version"
6
+ required: true
7
+runs:
8
+ using: composite
9
+ steps:
10
+ - shell: bash
11
+ run: |
12
+ curl -JLO "https://downloadmirror.intel.com/813591/sde-external-${{ inputs.sde-full-version }}-lin.tar.xz"
13
+ tar xvf sde-external-${{ inputs.sde-full-version }}-lin.tar.xz -C /opt
14
+
15
16
+ run: echo "/opt/sde-external-${{ inputs.sde-full-version }}-lin" >> $GITHUB_PATH
0 commit comments