Update Docker Image CI workflow to ignore changes in the 'qwik' direc… #100
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 api.upayan.space Docker Image | |
on: | |
push: | |
branches: ["master"] | |
paths-ignore: | |
- "qwik/**" | |
pull_request: | |
branches: ["master"] | |
paths-ignore: | |
- "qwik/**" | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and Push Docker Image | |
run: | | |
docker build . --tag ghcr.io/upayanmazumder/upayan.space:latest --build-arg NODE_ENV=production | |
docker push ghcr.io/upayanmazumder/upayan.space:latest |