From 0fa88009f883f77d29d125529171ada285e2bdaa Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Fri, 17 Feb 2023 11:56:10 +0100 Subject: [PATCH] remove rc gh action --- .github/workflows/release-candidate.yml | 90 ------------------------- 1 file changed, 90 deletions(-) delete mode 100644 .github/workflows/release-candidate.yml diff --git a/.github/workflows/release-candidate.yml b/.github/workflows/release-candidate.yml deleted file mode 100644 index 305ea3ad9..000000000 --- a/.github/workflows/release-candidate.yml +++ /dev/null @@ -1,90 +0,0 @@ -name: release-candidate -on: - release: - types: [prereleased] - -jobs: - arm64-making-something-cool: - runs-on: [self-hosted, arm64] - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - ref: "next" - - name: Set up QEMU - uses: docker/setup-qemu-action@v1 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - name: Login to DockerHub - uses: docker/login-action@v1 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Get current package version - uses: martinbeentjes/npm-get-version-action@v1.2.3 - id: package-version - - name: Build and push - uses: docker/build-push-action@v2 - with: - context: . - platforms: linux/arm64 - push: true - tags: coollabsio/coolify:${{github.event.release.name}}-arm64 - cache-from: type=registry,ref=coollabsio/coolify:buildcache-rc-arm64 - cache-to: type=registry,ref=coollabsio/coolify:buildcache-rc-arm64,mode=max - - uses: sarisia/actions-status-discord@v1 - if: always() - with: - webhook: ${{ secrets.DISCORD_WEBHOOK_DEV_RELEASE_CHANNEL }} - amd64-making-something-cool: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - ref: "next" - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - name: Login to DockerHub - uses: docker/login-action@v2 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Get current package version - uses: martinbeentjes/npm-get-version-action@v1.2.3 - id: package-version - - name: Build and push - uses: docker/build-push-action@v3 - with: - context: . - platforms: linux/amd64 - push: true - tags: coollabsio/coolify:${{github.event.release.name}}-amd64 - cache-from: type=registry,ref=coollabsio/coolify:buildcache-rc-amd64 - cache-to: type=registry,ref=coollabsio/coolify:buildcache-rc-amd64,mode=max - - uses: sarisia/actions-status-discord@v1 - if: always() - with: - webhook: ${{ secrets.DISCORD_WEBHOOK_DEV_RELEASE_CHANNEL }} - merge-manifest-to-be-cool: - runs-on: ubuntu-latest - needs: [arm64-making-something-cool, amd64-making-something-cool] - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - name: Login to DockerHub - uses: docker/login-action@v2 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Create & publish manifest - run: | - docker manifest create coollabsio/coolify:${{github.event.release.name}} --amend coollabsio/coolify:${{github.event.release.name}}-amd64 --amend coollabsio/coolify:${{github.event.release.name}}-arm64 - docker manifest push coollabsio/coolify:${{github.event.release.name}} -