Skip to content

Commit

Permalink
test: changed tag name to be latest
Browse files Browse the repository at this point in the history
  • Loading branch information
huniafatima-arbi committed Oct 4, 2024
1 parent e607e96 commit 3ab69c6
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/push-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,6 @@ jobs:
# 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);
return tagName;
result-encoding: string

- name: Build and push Dev Docker image
uses: docker/build-push-action@v1
Expand All @@ -37,7 +27,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_PASSWORD }}
target: dev
repository: edxops/registrar-dev
tags: ${{ steps.get-tag-name.outputs.result }},${{ github.sha }}
tags: latest,${{ github.sha }}

# - name: Build and push prod Docker image
# uses: docker/build-push-action@v1
Expand Down

0 comments on commit 3ab69c6

Please sign in to comment.