Skip to content

feat: 🎸 fetch price data from separated file #50

feat: 🎸 fetch price data from separated file

feat: 🎸 fetch price data from separated file #50

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: "18"
- name: Install and Build
run: |
npm install -g yarn
yarn install --frozen-lockfile
yarn build
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: enquestor/dnd-website:latest