Skip to content

Commit

Permalink
upgrade CALM to 1.3.1 to support macos-14 arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
Vito Van committed Aug 7, 2024
1 parent 223abe2 commit 6003574
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/pelusica.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ on:

jobs:
Web:
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3

- name: Build
run: |
set -x
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/1.0.1/calm.tgz
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/1.3.1/calm.tgz
mkdir calm
tar xvf calm.tgz
ls -lah calm
Expand All @@ -37,15 +37,15 @@ jobs:
files: |
*-web.zip
Linux:
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3

- name: Build
run: |
set -x
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/1.0.1/calm.tgz
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/1.3.1/calm.tgz
mkdir calm
tar xvf calm.tgz
ls -lah calm
Expand All @@ -64,7 +64,7 @@ jobs:

strategy:
matrix:
os: [macos-11, macos-12, macos-13]
os: [macos-12, macos-13, macos-14]

env:
CI_MATRIX_OS: ${{ matrix.os }}
Expand All @@ -76,7 +76,7 @@ jobs:
run: |
set -x
export OS_SUBFIX=".${CI_MATRIX_OS}"
curl -L -o calm.dmg https://github.com/VitoVan/calm/releases/download/1.0.1/calm${OS_SUBFIX}.dmg
curl -L -o calm.dmg https://github.com/VitoVan/calm/releases/download/1.3.1/calm${OS_SUBFIX}.dmg
hdiutil attach calm.dmg
cp -R "/Volumes/Calm - CALM/Calm.app/Contents/MacOS/" calm
ls -lah calm
Expand All @@ -95,7 +95,7 @@ jobs:
files: |
*.dmg
Windows:
runs-on: windows-latest
runs-on: windows-2019

steps:
- uses: actions/checkout@v3
Expand All @@ -107,7 +107,7 @@ jobs:
run: |
set -x
pacman -S --noconfirm --needed unzip
curl -L -o calm.zip https://github.com/VitoVan/calm/releases/download/1.0.1/calm.zip
curl -L -o calm.zip https://github.com/VitoVan/calm/releases/download/1.3.1/calm.zip
unzip calm.zip
ls -lah calm
export PATH=$PATH:$(pwd)/calm/
Expand Down

0 comments on commit 6003574

Please sign in to comment.