diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 761aa04..94c6d3f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,7 +3,7 @@ name: Release env: PKG_VERSION: "2026.07.28" # TODO: actions/checkout only supports GITHUB repos... - GATUS_REPO: "selfhoster1312/gatus" + GATUS_REPO: "https://github.com/selfhoster1312/gatus" GATUS_REF: "d65a3321f1291aa419870a04896aa65fc4c78cf4" # Preview mode: Publishes the build output as a CI artifact instead of creating # a release, allowing for manual inspection of the output. This mode is @@ -24,7 +24,6 @@ on: - '.github/workflows/release.yml' concurrency: - group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: false permissions: @@ -33,7 +32,7 @@ permissions: jobs: build: name: Build gatus with pre-packaged web assets - runs-on: ubuntu-22.04 + runs-on: docker steps: - name: Checkout sources uses: actions/checkout@v7 @@ -56,7 +55,7 @@ jobs: go build -o dist/gatus-amd64 cp dist/gatus-amd64 __CI_PREBUILD__/debian/gatus/usr/local/bin/gatus - name: Build deb for amd64 - uses: jiro4989/build-deb-action@86e86ceb88b13157fa569663d43c89346505fc3e + uses: https://github.com/jiro4989/build-deb-action@86e86ceb88b13157fa569663d43c89346505fc3e with: package: gatus package_root: __CI_PREBUILD__/debian/gatus @@ -70,7 +69,7 @@ jobs: GOARCH="arm64" go build -o dist/gatus-arm64 cp dist/gatus-arm64 __CI_PREBUILD__/debian/gatus/usr/local/bin/gatus - name: Build deb for arm64 - uses: jiro4989/build-deb-action@86e86ceb88b13157fa569663d43c89346505fc3e + uses: https://github.com/jiro4989/build-deb-action@86e86ceb88b13157fa569663d43c89346505fc3e with: package: gatus package_root: __CI_PREBUILD__/debian/gatus