From 33aa21fc1597e4820bf7ccdcdfa4af8584d191f4 Mon Sep 17 00:00:00 2001 From: ze0s <43699394+zze0s@users.noreply.github.com> Date: Fri, 18 Nov 2022 21:03:56 +0100 Subject: [PATCH] build(ci): move back to hosted-runners (#547) build(release): revert to hosted-runners --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 73e6809..b29f86a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ permissions: jobs: web: name: Build web - runs-on: self-hosted + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 @@ -44,7 +44,7 @@ jobs: goreleaserbuild: name: Build Go binaries if: github.event_name == 'pull_request' - runs-on: self-hosted + runs-on: ubuntu-latest needs: web steps: - name: Checkout @@ -82,7 +82,7 @@ jobs: goreleaser: name: Build & publish binaries and images if: startsWith(github.ref, 'refs/tags/') - runs-on: self-hosted + runs-on: ubuntu-latest needs: web steps: - name: Checkout @@ -119,7 +119,7 @@ jobs: docker: name: Build and publish Docker images - runs-on: self-hosted + runs-on: ubuntu-latest needs: web steps: - name: Checkout @@ -159,7 +159,7 @@ jobs: context: . file: ./Dockerfile.ci platforms: linux/amd64,linux/arm/v7,linux/arm64/v8 - push: true + push: ${{ github.repository_owner == 'autobrr' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} build-args: |