We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 080792c commit fd4c7f0Copy full SHA for fd4c7f0
.github/workflows/release.yml
@@ -59,6 +59,12 @@ jobs:
59
- uses: actions/checkout@v4
60
with:
61
submodules: recursive
62
+ # install openssl
63
+ - uses: knicknic/os-specific-run@v1.0.3
64
+ with:
65
+ macos: brew install openssl@1.1
66
+ linux: sudo apt-get install libssl-dev
67
+ windows: choco install openssl
68
- name: Install dist
69
# we specify bash to get pipefail; it guards against the `curl` command
70
# failing. otherwise `sh` won't catch that `curl` returned non-0
countryfetch/Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "countryfetch"
3
-version = "0.1.0"
+version = "0.1.1"
4
edition = "2024"
5
repository = "https://github.com/nik-rev/countryfetch"
6
homepage = "https://github.com/nik-rev/countryfetch"
0 commit comments