Skip to content

Commit 4f74550

Browse files
committed
Updated github runners
Signed-off-by: George M Dias <GDIAS@MITRE.ORG>
1 parent 655bf78 commit 4f74550

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/build-macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ jobs:
3232
run: |
3333
cd dist/macos
3434
for file in saf-*.pkg; do
35-
prefix=${file%-*-*.pkg}
36-
suffix=${file#saf-*-*-*}
37-
mv "$file" "$prefix-$suffix"
35+
prefix=${file%-*-*.pkg}
36+
suffix=${file#saf-*-*-*}
37+
mv "$file" "$prefix-$suffix"
3838
done
3939
4040
- name: Upload SAF-CLI macOS Installer Artifact

.github/workflows/build-windows-linux.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,19 @@ jobs:
4444
run: |
4545
cd saf/dist/win32
4646
for file in saf-*.exe; do
47-
prefix=${file%-*-*} # get prefix by removing frome end
48-
suffix=${file#saf-*-*-} # get suffix by removing from start
49-
mv "$file" "$prefix-$suffix"
47+
prefix=${file%-*-*} # get prefix by removing from end
48+
suffix=${file#saf-*-*-} # get suffix by removing from start
49+
mv "$file" "$prefix-$suffix"
5050
done
5151
5252
- name: Rename Debian Installers
5353
run: |
5454
cd saf/dist/deb
5555
for file in saf_*.deb; do
56-
prefix=${file%.*-*.deb}
57-
prefix_ver=${prefix#saf_}
58-
suffix=${file#*_*_}
59-
sudo mv "$file" "saf-$prefix_ver-$suffix"
56+
prefix=${file%.*-*.deb}
57+
prefix_ver=${prefix#saf_}
58+
suffix=${file#*_*_}
59+
sudo mv "$file" "saf-$prefix_ver-$suffix"
6060
done
6161
6262
- name: Upload SAF-CLI Windows Build x64 Artifact

.github/workflows/e2e-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
strategy:
1313
fail-fast: true
1414
matrix:
15-
platform: [ ubuntu-latest, macos-latest, windows-latest ]
16-
runs-on: ${{ matrix.platform }}
15+
platform: [ ubuntu, macos, windows ]
16+
runs-on: ${{ matrix.platform }}-latest
1717
steps:
1818
- uses: actions/checkout@v4
1919

0 commit comments

Comments
 (0)