Skip to content

Fix tags statement

Fix tags statement #10

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: Docker login
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push to Docker Hub
uses: docker/build-push-action@v5
with:
context: ./backend
tag_with_ref: true
tag_with_sha: true
tags: alejoide/bcra-scraper-api:latest
push: true