coolify/.github/workflows/release-candidate.yml

88 lines
3.1 KiB
YAML
Raw Normal View History

2022-09-02 19:36:47 +02:00
name: release-candidate
on:
release:
types: [prereleased]
jobs:
2022-09-06 11:02:33 +02:00
arm64-making-something-cool:
2022-09-06 11:05:40 +02:00
runs-on: [self-hosted, arm64]
2022-09-02 19:36:47 +02:00
steps:
- name: Checkout
uses: actions/checkout@v3
with:
2022-09-06 10:59:50 +02:00
ref: "next"
2022-09-02 19:36:47 +02:00
- 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: .
2022-09-06 10:59:50 +02:00
platforms: linux/arm64
2022-09-02 19:36:47 +02:00
push: true
2022-09-06 10:59:50 +02:00
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
2022-09-02 19:36:47 +02:00
- uses: sarisia/actions-status-discord@v1
if: always()
with:
2022-09-02 19:56:33 +02:00
webhook: ${{ secrets.DISCORD_WEBHOOK_DEV_RELEASE_CHANNEL }}
2022-09-06 11:02:33 +02:00
amd64-making-something-cool:
2022-09-06 11:21:58 +02:00
runs-on: ubuntu-latest
2022-09-06 10:59:50 +02:00
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 }}
2022-09-06 11:02:33 +02:00
merge-manifest-to-be-cool:
2022-09-06 11:21:58 +02:00
runs-on: ubuntu-latest
2022-09-06 11:02:33 +02:00
needs: [arm64-making-something-cool, amd64-making-something-cool]
2022-09-06 10:59:50 +02:00
steps:
2022-09-06 12:02:03 +02:00
- name: Checkout
uses: actions/checkout@v3
2022-09-06 11:55:16 +02:00
- name: Login to docker hub
if: success()
uses: actions-hub/docker/login@v1.0.3
env:
2022-09-06 12:02:03 +02:00
DOCKER_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
2022-09-06 11:31:02 +02:00
- name: Create & push manifest
with:
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}}