updated docs structure (#25) #4
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
on: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
converge: | |
name: Converge | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install werf | |
uses: werf/actions/[email protected] | |
- name: Log in to registry | |
# This is where you will update the personal access token to GITHUB_TOKEN | |
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin | |
- name: Run echo | |
run: | | |
werf version | |
docker version | |
echo $GITHUB_REPOSITORY | |
echo $GITHUB_REF_NAME | |
- name: Run Build | |
run: | | |
. $(werf ci-env github --as-file) | |
echo "${{ secrets.PROD_ENV }}" > .env.deploy | |
werf export web --tag ghcr.io/$GITHUB_REPOSITORY:$GITHUB_REF_NAME --dev | |
prod-deploy: | |
name: Deploy on prod | |
needs: converge | |
runs-on: ubuntu-latest | |
steps: | |
- name: ConfigCreate | |
run: | | |
mkdir ~/.kube/ | |
echo "${{ secrets.KUBECONFIG }}" > config | |
mv config ~/.kube/ | |
ls ~/.kube/ | |
kubectl set image deployment/solarity-docs-prod-webclient webclient=ghcr.io/$GITHUB_REPOSITORY:$GITHUB_REF_NAME -n docs-prod |