update the deeplink #152
Workflow file for this run
This file contains hidden or 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: production | |
| on: | |
| push: | |
| tags: | |
| - "v[0-9]+.[0-9]+.[0-9]+" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v2 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set up environment variables | |
| run: | | |
| cat > frontend/.env << EOF | |
| VITE_API_URL=https://login.threefold.me/ | |
| VITE_OPENKYC_URL=https://openkyc.threefold.me/ | |
| VITE_DEEPLINK=threebot:// | |
| EOF | |
| - name: Build the Docker image | |
| run: docker build . --file Dockerfile --tag ghcr.io/${{ github.repository_owner }}/threefold-connect:production-${{ github.sha }} | |
| - name: Push the Docker image | |
| run: docker push ghcr.io/${{ github.repository_owner }}/threefold-connect:production-${{ github.sha }} | |
| deploy: | |
| needs: [build] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set authorization certificate | |
| run: | | |
| mkdir ${HOME}/.kube | |
| echo ${{ secrets.KUBE_KEY }} | base64 --decode > ${HOME}/.kube/jimber-prod2.key | |
| echo ${HOME}/.kube/jimber-prod2.key | |
| echo ${{ secrets.KUBE_CRT }} | base64 --decode > ${HOME}/.kube/jimber-prod2.crt | |
| echo ${HOME}/.kube/jimber-prod2.crt | |
| - name: context | |
| run: | | |
| echo ${{ secrets.KUBE_CONFIG }} | base64 --decode > ${HOME}/.kube/config | |
| - name: Upgrade production on cluster | |
| run: | | |
| echo production-${{ github.sha }} | |
| helm upgrade threebotlogin helm_files -f helm_files/valuesProduction.yaml --set images.login.tag=production-${{ github.sha }} --set images.login.repo=ghcr.io/${{ github.repository_owner }}/threefold-connect -n jimber |