Skip to content

2023.11.6

2023.11.6 #5

Workflow file for this run

name: Release docker image to docker hub
on:
release:
types: [created]
jobs:
setup-build-publish-deploy:
name: Setup, Build, Publish, and Deploy
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Extract tag from version
id: extract_tag
run: echo ::set-output name=TAG::$(echo ${{ steps.get_version.outputs.VERSION }} | sed 's/refs\/tags\///')
- name: Set Docker Tag
run: echo "DOCKER_HUB_TAG=${{steps.extract_tag.outputs.TAG}}" >> $GITHUB_ENV
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Update REACT_APP_API_BASE_URL in .env using sed
run: sed -i 's~^REACT_APP_API_BASE_URL = "https://staging-consent-bb-api\.igrant\.io/v2"$~REACT_APP_API_BASE_URL = "https://demo-consent-bb-api.igrant.io/v2"~' .env
- name: Update REACT_APP_VERSION in .env using sed
run: sed -i "s~^REACT_APP_VERSION=\".*\"$~REACT_APP_VERSION=\"${{ steps.extract_tag.outputs.TAG }}\"~" .env
# Build docker image, publish docker image to docker hub
- name: Build docker image, publish docker image to docker hub
run: |
make build/docker/deployable/dockerhub publish/dockerhub