Build Smanga Docker #21
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 Smanga Docker | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build Smanga Docker | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@master | |
- | |
name: Set Version | |
id: set-version | |
run: | | |
SMANGA_VERSION=$(jq -r '.version' package.json) | |
echo "version=${SMANGA_VERSION}" >> $GITHUB_OUTPUT | |
- | |
name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ secrets.DOCKER_USERNAME }}/smanga-nodejs | |
tags: | | |
type=raw,value=${{ steps.set-version.outputs.version }} | |
type=raw,value=latest | |
- | |
name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'npm' | |
- | |
name: Build Web | |
run: | | |
npm install | |
npm run build-docker | |
- | |
name: Set Up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- | |
name: Set Up Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Login DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- | |
name: Build | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: Dockerfile | |
platforms: | | |
linux/amd64 | |
linux/arm64/v8 | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} |