Skip to content

Commit d89268d

Browse files
author
Vito Van
committed
upgrade CALM to 1.3.1 to support macos-14 arm64
and fix an issue on Windows
1 parent 67a9ef0 commit d89268d

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/spring.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
Web:
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-20.04
1515

1616
steps:
1717
- uses: actions/checkout@v3
@@ -20,9 +20,9 @@ jobs:
2020
working-directory: ./Spring/afterwards
2121
run: |
2222
set -x
23-
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/0.1.3/calm.tgz
23+
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/1.3.1/calm.tgz
2424
mkdir calm
25-
tar xvf calm.tgz --directory=calm
25+
tar xvf calm.tgz
2626
ls -lah calm
2727
export PATH=$PATH:$(pwd)/calm/
2828
# we don't need ogg in wasm,
@@ -47,7 +47,7 @@ jobs:
4747
files: |
4848
*-web.zip
4949
Linux:
50-
runs-on: ubuntu-22.04
50+
runs-on: ubuntu-20.04
5151

5252
steps:
5353
- uses: actions/checkout@v3
@@ -56,9 +56,9 @@ jobs:
5656
working-directory: ./Spring/afterwards
5757
run: |
5858
set -x
59-
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/0.1.3/calm.tgz
59+
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/1.3.1/calm.tgz
6060
mkdir calm
61-
tar xvf calm.tgz --directory=calm
61+
tar xvf calm.tgz
6262
ls -lah calm
6363
export PATH=$PATH:$(pwd)/calm/
6464
export APP_NAME=Maze
@@ -77,7 +77,7 @@ jobs:
7777

7878
strategy:
7979
matrix:
80-
os: [macos-11, macos-12, macos-13]
80+
os: [macos-12, macos-13, macos-14]
8181

8282
env:
8383
CI_MATRIX_OS: ${{ matrix.os }}
@@ -90,7 +90,7 @@ jobs:
9090
run: |
9191
set -x
9292
export OS_SUBFIX=".${CI_MATRIX_OS}"
93-
curl -L -o calm.dmg https://github.com/VitoVan/calm/releases/download/0.1.3/calm${OS_SUBFIX}.dmg
93+
curl -L -o calm.dmg https://github.com/VitoVan/calm/releases/download/1.3.1/calm${OS_SUBFIX}.dmg
9494
hdiutil attach calm.dmg
9595
cp -R "/Volumes/Calm - CALM/Calm.app/Contents/MacOS/" calm
9696
ls -lah calm
@@ -111,7 +111,7 @@ jobs:
111111
files: |
112112
*.dmg
113113
Windows:
114-
runs-on: windows-latest
114+
runs-on: windows-2019
115115

116116
steps:
117117
- uses: actions/checkout@v3
@@ -124,8 +124,8 @@ jobs:
124124
run: |
125125
set -x
126126
pacman -S --noconfirm --needed unzip
127-
curl -L -o calm.zip https://github.com/VitoVan/calm/releases/download/0.1.3/calm.zip
128-
unzip calm.zip -d calm
127+
curl -L -o calm.zip https://github.com/VitoVan/calm/releases/download/1.3.1/calm.zip
128+
unzip calm.zip
129129
ls -lah calm
130130
export PATH=$PATH:$(pwd)/calm/
131131
export APP_ICON="$(pwd)/images/app.ico"

0 commit comments

Comments
 (0)