Skip to content

changed build push action version #8

changed build push action version

changed build push action version #8

Workflow file for this run

name: build
on:
push:
branches:
- main
jobs:
build:
environment: prod
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Build and push to Docker Hub
uses: docker/build-push-action@v5
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
context: ./backend
repository: alejoide/bcra-scraper-api
tag_with_ref: true
tag_with_sha: true
tags: ${{ github.sha }}