From 85e83b5441379f7ea45b4a8742e4479bb67c7db1 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Fri, 20 Jan 2023 10:42:13 +0100 Subject: [PATCH] Test new gh actions --- .github/workflows/staging-release.yml | 64 +++++---------------------- 1 file changed, 11 insertions(+), 53 deletions(-) diff --git a/.github/workflows/staging-release.yml b/.github/workflows/staging-release.yml index c4a9988c4..43a10ac2b 100644 --- a/.github/workflows/staging-release.yml +++ b/.github/workflows/staging-release.yml @@ -12,8 +12,8 @@ on: - next jobs: - arm64: - runs-on: [self-hosted, arm64] + build: + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 @@ -31,62 +31,20 @@ jobs: - name: Get current package version uses: martinbeentjes/npm-get-version-action@v1.2.3 id: package-version + - name: Docker meta + id: staging + uses: docker/metadata-action@v3 + with: + images: coollabsio/coolify:next + tags: | + type=ref,event=branch - name: Build and push uses: docker/build-push-action@v2 with: context: . - platforms: linux/arm64 + platforms: linux/amd64,linux/arm/v7 push: true - tags: coollabsio/coolify:next-arm64 - cache-from: type=registry,ref=coollabsio/coolify:buildcache-next-arm64 - cache-to: type=registry,ref=coollabsio/coolify:buildcache-next-arm64,mode=max - amd64: - 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:next-amd64 - cache-from: type=registry,ref=coollabsio/coolify:buildcache-next-amd64 - cache-to: type=registry,ref=coollabsio/coolify:buildcache-next-amd64,mode=max - merge-manifest: - runs-on: ubuntu-latest - needs: [arm64, amd64] - 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:next --amend coollabsio/coolify:next-amd64 --amend coollabsio/coolify:next-arm64 - docker manifest push coollabsio/coolify:next + tags: ${{ steps.staging.outputs.tags }} - uses: sarisia/actions-status-discord@v1 if: always() with: