This repository has been archived by the owner on Dec 27, 2024. It is now read-only.
Merge pull request #45 from secanis/dependabot/npm_and_yarn/nestjs/co… #49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build docker image | |
on: | |
push: | |
branches: main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v2 | |
- name: install buildx | |
id: buildx | |
uses: crazy-max/ghaction-docker-buildx@v3 | |
with: | |
version: latest | |
- name: login to docker hub | |
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin | |
- name: get-npm-version | |
id: package-version | |
uses: martinbeentjes/npm-get-version-action@master | |
- name: build the image | |
run: | | |
docker buildx build --push \ | |
--tag secanis/mqtt-dashboard:latest --tag secanis/mqtt-dashboard:${{ steps.package-version.outputs.current-version}} \ | |
--platform linux/amd64,linux/arm/v7,linux/arm64 . | |
- uses: Klemensas/action-autotag@stable | |
with: | |
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
tag_prefix: 'v' | |
# currently this not works because of not usable access token for docker hub api | |
# - name: Docker Hub Description | |
# uses: peter-evans/[email protected] | |
# with: | |
# username: ${{ secrets.DOCKER_USERNAME }} | |
# password: ${{ secrets.DOCKER_PASSWORD }} | |
# repository: secanis/mqtt-dashboard | |
# short-description: This Mqtt project should help to visualize the actual traffic and other data on a Mqtt Broker. | |
# readme-filepath: ./README.md |