diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c0d9d6f..63aa6f2 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -7,7 +7,7 @@ on: jobs: build: - name: "Build Ghostty" + name: "Build Goaccess" runs-on: ubuntu-20.04 permissions: write-all @@ -21,13 +21,11 @@ jobs: sudo apt-get update sudo apt-get install -y build-essential libmaxminddb-dev - - name: "Clone Goaccess repo" - uses: GuillaumeFalourd/clone-github-repo-action@v2.3 - with: - depth: 1 - branch: 'v1.9.3' - owner: 'allinurl' - repository: 'goaccess' - - - name: "Build Ghostty binary" - run: cd goaccess && ./configure --enable-utf8 --enable-geoip=mmdb && make && ls -la + - name: "Build Goaccess binary" + run: | + wget https://tar.goaccess.io/goaccess-1.9.3.tar.gz + tar -xzvf goaccess-1.9.3.tar.gz + cd goaccess-1.9.3/ + ./configure --enable-utf8 --enable-geoip=mmdb + make + ls -la