diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f0b18fb..01919ac 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: @@ -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'