Skip to content

✨ Feat: Add Skills Section #4

✨ Feat: Add Skills Section

✨ Feat: Add Skills Section #4

Workflow file for this run

name: Portfolio CI/CD
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build & Push Image
run: |
echo "${{ secrets.DOCKERHUB_PASSWORD }}" | docker login -u "${{secrets.DOCKERHUB_USERNAME}}" --password-stdin
docker image build . -t amirzenoozi/portfolio-react-app:latest
docker push amirzenoozi/portfolio-react-app:latest