Skip to content

Commit

Permalink
Fix "release" GitHub Action
Browse files Browse the repository at this point in the history
What?
=====

This updates the release GitHub action to reference latest Ubuntu and
vendor openssl to resolve issues with building release versions.
  • Loading branch information
joshuaclayton committed Dec 10, 2021
1 parent b024f51 commit f040dca
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
build: [linux, macos]
include:
- build: linux
os: ubuntu-18.04
os: ubuntu-latest
rust: nightly
target: x86_64-unknown-linux-musl
- build: macos
Expand Down
12 changes: 12 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2018"
license = "MIT"

[dependencies]
git2 = "0.13.25"
git2 = { version = "0.13", features = ["vendored-openssl"] }
structopt = "0.3"
chrono = "0.4"
date-calculations = "0.1"
Expand Down

0 comments on commit f040dca

Please sign in to comment.