diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index b612969..3ba50f2 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -1,4 +1,4 @@ -name: Create release +name: Release on: push: @@ -37,5 +37,8 @@ jobs: distribution: goreleaser version: '~> v2' args: release --clean + files: + - config.ini + - queries/*.ini env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 483b3c8..2875f19 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -1,4 +1,4 @@ -name: Run tests +name: Tests on: workflow_dispatch: diff --git a/.gitignore b/.gitignore index cd80213..3c8f8d3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ .vscode -config.ini __debug* \ No newline at end of file diff --git a/README.md b/README.md index acb3c5a..75b07ac 100644 --- a/README.md +++ b/README.md @@ -16,12 +16,11 @@ To install and run the application run the following set of commands: ```sh git clone git@github.com:igor-sikachyna/webtrack.git cd webtrack -mv ./config.ini.example ./config.ini go install go run . ``` -This will clone the repo, install the dependencies, create the `config.ini` file, and run the application. +This will clone the repo, install the dependencies, and run the application. ## How to use diff --git a/config.ini.example b/config.ini similarity index 100% rename from config.ini.example rename to config.ini