Skip to content

ajuste link portifolio #29

ajuste link portifolio

ajuste link portifolio #29

Workflow file for this run

name: CI/CD Pipeline Portifolio
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
token: ${{ secrets.MY_PERSONAL_TOKEN }}
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14
- name: Install dependencies
run: npm install
- name: Build and push Docker image
run: |
docker build -t adrianovolter/portifolio-2023-app .
docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p ${{ secrets.DOCKERHUB_TOKEN }}
docker push adrianovolter/portifolio-2023-app:latest