Skip to content

test: changed tag name to be latest #2

test: changed tag name to be latest

test: changed tag name to be latest #2

name: Build and Push Docker Images
on:
push:
branches:
- master
- open-release/**
- huniafatima/test-branch
jobs:
push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
# Use the release name as the image tag if we're building an open release branch.
# Examples: if we're building 'open-release/maple.master', tag the image as 'maple.master'.
# Otherwise, we must be building from a push to master, so use 'latest'.
- name: Get tag name
id: get-tag-name
uses: actions/github-script@v5
with:
script: |
# const branchName = context.ref.split('/').slice(-1)[0];
const tagName = 'latest';
console.log('Will use tag: ' + tagName);

Check failure on line 28 in .github/workflows/push-docker-images.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/push-docker-images.yml

Invalid workflow file

You have an error in your yaml syntax on line 28
return tagName;
result-encoding: string
- name: Build and push Dev Docker image
uses: docker/build-push-action@v1
with:
push: true
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
target: dev
repository: edxops/registrar-dev
tags: ${{ steps.get-tag-name.outputs.result }},${{ github.sha }}
# - name: Build and push prod Docker image
# uses: docker/build-push-action@v1
# with:
# push: true
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_PASSWORD }}
# target: prod
# repository: edxops/registrar
# tags: ${{ steps.get-tag-name.outputs.result }},${{ github.sha }}