Skip to content

Commit

Permalink
use docker official build push action for buildx functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
rsnider-chg committed Feb 20, 2024
1 parent ca22edc commit e3263fd
Showing 1 changed file with 28 additions and 16 deletions.
44 changes: 28 additions & 16 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ on:
push:
branches:
- main
- arm-support

jobs:
release:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
if: (!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci'))
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -34,27 +35,38 @@ jobs:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- run: npm ci
- run: npm run build

- run: npm run ci:build
- name: Build multi-arch image
uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm64
push: false
tags: bull-monitor:latest

- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
IMAGE: 'bull-monitor:latest'
run: |
npx auto shipit
# - name: Create Release
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# IMAGE: 'bull-monitor:latest'
# run: |
# npx auto shipit

- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: ejhayes/nodejs-bull-monitor
short-description: 'All in one bull monitoring and reporting utility'
# - name: Docker Hub Description
# uses: peter-evans/dockerhub-description@v3
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_PASSWORD }}
# repository: ejhayes/nodejs-bull-monitor
# short-description: 'All in one bull monitoring and reporting utility'

0 comments on commit e3263fd

Please sign in to comment.