Merge pull request #303 from jamebal/dev #81
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 Test Docker Image | |
on: | |
push: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js 16.20.2 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 16.20.2 | |
- name: Install dependencies | |
run: npm install | |
- name: Build | |
run: npm run build:prod | |
- name: Extract project version from package.json | |
run: | | |
VERSION=$(node -p "require('./package.json').version") | |
echo "PROJECT_VERSION=$VERSION" >> $GITHUB_ENV | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ secrets.GHCR_IO_USERNAME }} | |
password: ${{ secrets.GHCR_IO_TOKEN }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./Dockerfile | |
push: true | |
tags: | | |
jmal/jmalcloud-nginx:test | |
ghcr.io/${{ secrets.GHCR_IO_USERNAME }}/jmalcloud-nginx:test | |
platforms: linux/amd64,linux/arm64 | |
build-args: | | |
VERSION=${{ env.PROJECT_VERSION }} |