Skip to content

0.3.3

0.3.3 #88

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches:
- deploy
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Build & Push to Docker Hub
run: |
chmod +x ./scripts/push-to-docker.sh
./scripts/push-to-docker.sh
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}