diff --git a/.dockerignore b/.dockerignore index f2f90ab..ae30b96 100644 --- a/.dockerignore +++ b/.dockerignore @@ -16,6 +16,11 @@ app/pkg/* Dockerfile .dockerignore +# Don't track docs +README.md +LICENSE +docs/* + # Various config files that shouldn't be tracked lldap_config.toml server_key diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 1a663e7..3ebd143 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -23,7 +23,7 @@ jobs: # All of these options are optional, so you can remove them if you are happy with the defaults concurrent_skipping: 'never' skip_after_successful_duplicate: 'true' - paths_ignore: '["**/README.md"]' + paths_ignore: '["**/README.md", "**/docs/**"]' do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]' test: name: cargo test diff --git a/architecture.md b/docs/architecture.md similarity index 100% rename from architecture.md rename to docs/architecture.md