diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index de0a945..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,15 +0,0 @@ -on: - release: - types: [created] - -jobs: - release-linux-amd64: - name: release linux/amd64 - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: wangyoucao577/go-release-action@v1.35 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - goos: linux - goarch: amd64 \ No newline at end of file diff --git a/config/Load.go b/config/Load.go index e4e5a1d..a07afa6 100644 --- a/config/Load.go +++ b/config/Load.go @@ -14,8 +14,7 @@ func (c *Config) Load() *Config { path = os.Args[1] } if path == "" { - // TODO: Change to /etc/blocklister.yml - path = "blocklister.yml" + path = "/etc/blocklister.yml" } yamlFile, err := ioutil.ReadFile(path)