agate

Simple gemini server for static files
git clone https://github.com/mbrubeck/agate.git
Log | Files | Refs | README

commit 2359127167a1b752a13015d121705954bef8745e
parent 42262ef4edaff301ac8487f35ab41107a76e9790
Author: Johann150 <johann.galle@protonmail.com>
Date:   Fri, 27 Aug 2021 15:14:27 +0200

move release script

Putting it in the top level can cause confusion.
Resolves #69

Diffstat:
Rrelease.sh -> .github/workflows/release.sh | 0
M.github/workflows/release.yml | 2+-
MCargo.toml | 2+-
3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/release.sh b/.github/workflows/release.sh diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml @@ -30,7 +30,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: build - run: bash release.sh + run: bash .github/workflows/release.sh - name: upload release asset x86_64 uses: actions/upload-release-asset@v1 env: diff --git a/Cargo.toml b/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/mbrubeck/agate" readme = "README.md" license = "MIT/Apache-2.0" edition = "2018" -exclude = ["/tools", "/.github", "/release.sh", "/Cross.toml", "/content", "/CODE_OF_CONDUCT.md", "/CONTRIBUTING.md", "/CHANGELOG.md"] +exclude = ["/tools", "/.github", "/Cross.toml", "/content", "/CODE_OF_CONDUCT.md", "/CONTRIBUTING.md", "/CHANGELOG.md"] [dependencies] configparser = "2.0"