diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml deleted file mode 100644 index 46493b6..0000000 --- a/.github/workflows/cd.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: goreleaser - -on: - push: - tags: - - '*' - -jobs: - goreleaser: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: 1.14 - - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v2 - with: - version: latest - args: release --rm-dist - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.goreleaser.yml b/.goreleaser.yml deleted file mode 100644 index af6b62b..0000000 --- a/.goreleaser.yml +++ /dev/null @@ -1,45 +0,0 @@ -before: - hooks: - - go mod download -builds: - - id: tdsh-api - main: ./cmd/tdsh-api/tdsh-api.go - binary: tdsh-api - goos: - - linux - goarch: - - amd64 - - id: tdsh-crawler - main: ./cmd/tdsh-crawler/tdsh-crawler.go - binary: tdsh-crawler - goos: - - linux - goarch: - - amd64 - - id: tdsh-extractor - main: ./cmd/tdsh-extractor/tdsh-extractor.go - binary: tdsh-extractor - goos: - - linux - goarch: - - amd64 - - id: tdsh-scheduler - main: ./cmd/tdsh-scheduler/tdsh-scheduler.go - binary: tdsh-scheduler - goos: - - linux - goarch: - - amd64 - - id: trandoshanctl - main: ./cmd/trandoshanctl/trandoshanctl.go - binary: trandoshanctl - goos: - - linux - goarch: - - amd64 -checksum: - name_template: 'checksums.txt' -snapshot: - name_template: "{{ .Tag }}-{{ .ShortCommit }}" -release: - prerelease: true \ No newline at end of file diff --git a/snapcraft.yaml b/snapcraft.yaml deleted file mode 100644 index ff4c230..0000000 --- a/snapcraft.yaml +++ /dev/null @@ -1,38 +0,0 @@ -name: trandoshan -version: git -summary: Distributed dark web crawler. -description: | - Fast, highly configurable, distributed dark web crawler designed to run on the cloud. -confinement: strict -license: GPL-3.0 -grade: stable -base: core18 -parts: - trandoshan: - plugin: go - go-importpath: github.com/creekorful/trandoshan - source: . - source-type: git - build-packages: - - gcc -apps: - api: - command: bin/tdsh-api - plugs: - - network - crawler: - command: bin/tdsh-crawler - plugs: - - network - feeder: - command: bin/tdsh-feeder - plugs: - - network - persister: - command: bin/tdsh-persister - plugs: - - network - scheduler: - command: bin/tdsh-scheduler - plugs: - - network