Change copy directory for build app in Dockerfile #247
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: | |
branches: | |
- 'main' | |
- 'devops/ci' | |
env: | |
IMAGE_NAME: ghcr.io/${{ github.repository }}:${{github.sha}} | |
URL: "https://staging.docs.rarimo.com" | |
DOMAIN: staging.docs.rarimo.com | |
jobs: | |
converge: | |
name: Converge | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- 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 | |
export URL="https://staging.docs.rarimo.com" | |
export BASE_URL="/" | |
export STAGING="true" | |
- name: Cache layers | |
uses: actions/cache@v3 | |
with: | |
path: "${{ github.workspace }}/.skaffold/cache" | |
key: skaffold-${{ hashFiles('**/cache') }} | |
restore-keys: | | |
skaffold- | |
- name: Run Skaffold pipeline as command | |
uses: hiberbee/github-action-skaffold@latest | |
id: build | |
with: | |
command: build --tag ${{ github.sha }} | |
repository: ghcr.io/${{ github.repository_owner }} | |
deploy: | |
name: Deploy | |
needs: converge | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install Helm | |
uses: azure/setup-helm@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} # only needed if version is 'latest' | |
id: install | |
- name: ConfigCreate | |
run: | | |
mkdir ~/.kube/ | |
echo "${{ secrets.K8SCONFIG }}" | base64 -d > config | |
mv config ~/.kube/ | |
helm upgrade -i "docs" ".helm" --set global.IngressDomain=staging.docs.rarimo.com --set "image.repository=ghcr.io/${GITHUB_REPOSITORY}" --set "image.tag=${GITHUB_SHA}" --namespace docs-staging | |