Merge pull request #53 from DIG-Network/release/v0.0.1-alpha.59 #51
Workflow file for this run
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 and Push Docker | |
on: | |
push: | |
tags: | |
- '**' | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build and Push Docker Images for Multiple Architectures | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Build Project | |
run: npm run build | |
- name: Extract Project Name | |
id: project-name | |
run: | | |
PROJECT_NAME=$(jq -r '.name' package.json) | |
echo "PROJECT_NAME=$PROJECT_NAME" >> $GITHUB_ENV | |
- name: Get tag name | |
id: tag-name | |
run: | | |
TAGNAME=${GITHUB_REF##*/} | |
echo "TAGNAME=$TAGNAME" >> $GITHUB_ENV | |
- name: Determine Docker Tag | |
id: docker-tag | |
run: | | |
if [[ "${TAGNAME}" == *"alpha"* ]]; then | |
echo "DOCKER_TAG=latest-alpha" >> $GITHUB_ENV | |
else | |
echo "DOCKER_TAG=latest" >> $GITHUB_ENV | |
fi | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
with: | |
install: true | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and Push Docker Images | |
run: | | |
docker buildx build \ | |
--platform linux/amd64,linux/arm64 \ | |
-t ${{ vars.DOCKER_NAMESPACE }}/${{ env.PROJECT_NAME }}:${{ env.DOCKER_TAG }} \ | |
-t ${{ vars.DOCKER_NAMESPACE }}/${{ env.PROJECT_NAME }}:${{ env.TAGNAME }} \ | |
--push . |