From 490c1ae481938aacfc358cee3cfd2e5b3b94d28b Mon Sep 17 00:00:00 2001 From: Kurt Wolf Date: Thu, 9 Dec 2021 13:15:10 -0500 Subject: [PATCH] github actions package should work now --- .github/package | 6 ++---- .gitignore | 1 + Justfile | 3 +++ LICENSE.md | 25 +++++++++++++++++++++++++ 4 files changed, 31 insertions(+), 4 deletions(-) create mode 100644 LICENSE.md diff --git a/.github/package b/.github/package index 55ba15a..2aea4a6 100755 --- a/.github/package +++ b/.github/package @@ -26,10 +26,8 @@ cp \ $EXECUTABLE \ Cargo.lock \ Cargo.toml \ - GRAMMAR.md \ - LICENSE \ - README.adoc \ - man/$BIN.1 \ + LICENSE.md \ + README.md \ $DIST cd $DIST diff --git a/.gitignore b/.gitignore index ea8c4bf..c849890 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /target +dist/ diff --git a/Justfile b/Justfile index ff8e399..0c04f81 100644 --- a/Justfile +++ b/Justfile @@ -47,3 +47,6 @@ publish: patch: test just version patch just publish + +package: + REF=master TARGET=$(rustc -vV | sed -n 's|host: ||p') TARGET_RUSTFLAGS= OS=macos-latest .github/package \ No newline at end of file diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..6722b84 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,25 @@ +The MIT License (MIT) +===================== + +Copyright © `` `` + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the “Software”), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file