We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9086637 commit d2617c6Copy full SHA for d2617c6
.github/workflows/builtAndTest.yml
@@ -76,12 +76,18 @@ jobs:
76
with:
77
submodules: true
78
79
+ - name: Get Distribution Version
80
+ id: distro_version
81
+ run: |
82
+ DISTRO_VERSION=$(lsb_release -r -s)
83
+ echo "DISTRO_VERSION=$DISTRO_VERSION" >> $GITHUB_ENV
84
+
85
- name: Download PcapPlusPlus
86
uses: robinraju/release-downloader@v1
87
88
repository: "seladb/PcapPlusPlus"
89
tag: "v${{env.PCAPPLUSPLUS_LATEST_VERSION}}"
- fileName: "pcapplusplus-${{env.PCAPPLUSPLUS_LATEST_VERSION}}-ubuntu-$(lsb_release -r -s)-gcc-*.tar.gz"
90
+ fileName: "pcapplusplus-${{env.PCAPPLUSPLUS_LATEST_VERSION}}-ubuntu-${{env.DISTRO_VERSION}}-gcc-*.tar.gz"
91
out-file-path: "server/linux/libs"
92
tarBall: true
93
extract: true
0 commit comments