Skip to content

refactor(dashboard): dashboard content (#54) #22

refactor(dashboard): dashboard content (#54)

refactor(dashboard): dashboard content (#54) #22

Workflow file for this run

name: CI-Merge
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASS }}
- name: Build the Docker image
id: build_image
run: |
docker build -t ${{ vars.DOCKERHUB_USERNAME }}/negar-frontend:latest .
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Push the Docker image
run: |
docker tag ${{ vars.DOCKERHUB_USERNAME }}/negar-frontend:latest ${{ vars.DOCKERHUB_USERNAME }}/negar-frontend:${{ steps.tag_version.outputs.new_tag }}
docker push ${{ vars.DOCKERHUB_USERNAME }}/negar-frontend:${{ steps.tag_version.outputs.new_tag }}