File tree 5 files changed +18
-6
lines changed
5 files changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -229,11 +229,17 @@ jobs:
229
229
cd ..
230
230
mv zip/als-ubuntu.zip .
231
231
fi
232
- if [[ ${{ runner.os }} == "macOS" ]]; then
232
+ if [[ ${{ matrix.os }} == "macos-latest" ]]; then
233
+ cd zip
234
+ zip -r als-macos-arm64.zip ./*
235
+ cd ..
236
+ mv zip/als-macos-arm64.zip .
237
+ fi
238
+ if [[ ${{ matrix.os }} == "macos-13" ]]; then
233
239
cd zip
234
- zip -r als-macos.zip ./*
240
+ zip -r als-macos-x64 .zip ./*
235
241
cd ..
236
- mv zip/als-macos.zip .
242
+ mv zip/als-macos-x64 .zip .
237
243
fi
238
244
239
245
- name : 📦 Bundle executable, DLLs and data files (on Windows)
Original file line number Diff line number Diff line change @@ -4,11 +4,17 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
6
6
7
+ ## v0.2.7.0.1.2 - 2024-12-4
8
+
9
+ ### Fixed
10
+ - Release of artefacts on macOS
11
+
7
12
## v0.2.7.0.1.1 - 2024-12-4
8
13
9
14
### Added
10
15
- #29 : Integration testing for the language server
11
16
- Prebuilt binaries for Intel x64 macOS
17
+ - Support for Agda-2.7.0.1
12
18
13
19
### Changed
14
20
- Unfied workflow for building and testing the language server across all platforms
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ cabal-version: 1.12
5
5
-- see: https://github.com/sol/hpack
6
6
7
7
name : agda-language-server
8
- version : 0.2.7.0.1.1
8
+ version : 0.2.7.0.1.2
9
9
synopsis : An implementation of language server protocal (LSP) for Agda 2.
10
10
description : Please see the README on GitHub at <https://github.com/agda/agda-language-server#readme>
11
11
category : Development
Original file line number Diff line number Diff line change 1
1
name : agda-language-server
2
- version : 0.2.7.0.1.1
2
+ version : 0.2.7.0.1.2
3
3
github : " banacorn/agda-language-server"
4
4
license : MIT
5
5
author : " Ting-Gian LUA"
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ options =
59
59
]
60
60
61
61
usage :: String
62
- usage = " Agda v2.7.0.1 Language Server v1 \n Usage: als [Options...]\n "
62
+ usage = " Agda v2.7.0.1 Language Server v2 \n Usage: als [Options...]\n "
63
63
64
64
usageAboutAgdaOptions :: String
65
65
usageAboutAgdaOptions =
You can’t perform that action at this time.
0 commit comments