From 98e1558f724a61754a248246afbca612308db965 Mon Sep 17 00:00:00 2001 From: Mark Kusper <33031985+ns-mkusper@users.noreply.github.com> Date: Sun, 1 Sep 2024 10:18:31 -0500 Subject: [PATCH] chore: get release workflow working (#12) chore: get release workflow working --- .github/{workflows => templates}/build-setup.yml | 0 CHANGELOG.md | 11 +++++++++++ Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) rename .github/{workflows => templates}/build-setup.yml (100%) create mode 100644 CHANGELOG.md diff --git a/.github/workflows/build-setup.yml b/.github/templates/build-setup.yml similarity index 100% rename from .github/workflows/build-setup.yml rename to .github/templates/build-setup.yml diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..2086f43 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [unreleased] + +### 🚀 Features + +- Handle multiple devices (#6) + + diff --git a/Cargo.toml b/Cargo.toml index 7c97ace..1875aaf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,7 +51,7 @@ install-path = "CARGO_HOME" install-updater = false # customize cargo-dist build env (install vcpkg and vcpkg build, etc) # see: https://opensource.axo.dev/cargo-dist/book/ci/customizing.html#customizing-build-setup -github-build-setup = "build-setup.yml" +github-build-setup = "../templates/build-setup.yml" [package.metadata.vcpkg] dependencies = ["ffmpeg[x264,vpx,freetype,fontconfig]", "x264[asm,core,default-features]"]