2022-07-18 07:51:36 +00:00
|
|
|
name: production-release
|
2022-05-04 11:02:16 +00:00
|
|
|
|
|
|
|
on:
|
2022-05-06 13:41:42 +00:00
|
|
|
release:
|
2022-09-02 17:56:33 +00:00
|
|
|
types: [released]
|
2022-05-04 11:02:16 +00:00
|
|
|
|
|
|
|
jobs:
|
2022-07-18 07:51:36 +00:00
|
|
|
making-something-cool:
|
2022-05-04 11:02:16 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-07-18 07:51:36 +00:00
|
|
|
- name: Checkout
|
2022-05-04 11:02:16 +00:00
|
|
|
uses: actions/checkout@v2
|
2022-07-18 07:51:36 +00:00
|
|
|
- name: Set up QEMU
|
2022-05-04 11:02:16 +00:00
|
|
|
uses: docker/setup-qemu-action@v1
|
2022-07-18 07:51:36 +00:00
|
|
|
- name: Set up Docker Buildx
|
2022-05-04 11:02:16 +00:00
|
|
|
uses: docker/setup-buildx-action@v1
|
2022-07-18 07:51:36 +00:00
|
|
|
- name: Login to DockerHub
|
|
|
|
uses: docker/login-action@v1
|
2022-05-04 11:02:16 +00:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
2022-07-18 07:51:36 +00:00
|
|
|
- name: Get current package version
|
|
|
|
uses: martinbeentjes/npm-get-version-action@v1.2.3
|
|
|
|
id: package-version
|
|
|
|
- name: Build and push
|
2022-05-04 11:02:16 +00:00
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
context: .
|
2022-05-04 12:11:46 +00:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2022-05-04 11:02:16 +00:00
|
|
|
push: true
|
2022-05-04 12:31:03 +00:00
|
|
|
tags: coollabsio/coolify:latest,coollabsio/coolify:${{steps.package-version.outputs.current-version}}
|
2022-05-06 13:10:28 +00:00
|
|
|
cache-from: type=registry,ref=coollabsio/coolify:buildcache
|
|
|
|
cache-to: type=registry,ref=coollabsio/coolify:buildcache,mode=max
|
2022-07-18 08:08:48 +00:00
|
|
|
- uses: sarisia/actions-status-discord@v1
|
|
|
|
if: always()
|
|
|
|
with:
|
2022-08-27 08:19:32 +00:00
|
|
|
webhook: ${{ secrets.DISCORD_WEBHOOK_PROD_RELEASE_CHANNEL }}
|