Use right cfg files from the previous release because the cfg files w… #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- '**' | |
env: | |
IMAGE_BASE_NAME: dataquest/dspace | |
jobs: | |
retag-BE-image: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_ACCESS_TOKEN }} | |
- name: retag image | |
run: | | |
docker pull ${{ env.IMAGE_BASE_NAME }}:${{ github.sha }} | |
docker tag ${{ env.IMAGE_BASE_NAME }}:${{ github.sha }} ${{ env.IMAGE_BASE_NAME }}:${{ github.ref_name }} | |
docker pull ${{ env.IMAGE_BASE_NAME }}-cli:${{ github.sha }} | |
docker tag ${{ env.IMAGE_BASE_NAME }}-cli:${{ github.sha }} ${{ env.IMAGE_BASE_NAME }}-cli:${{ github.ref_name }} | |
- name: push image | |
run: | | |
docker push ${{ env.IMAGE_BASE_NAME }}:${{ github.ref_name }} | |
docker push ${{ env.IMAGE_BASE_NAME }}-cli:${{ github.ref_name }} | |