Deploy review environment #38
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: Deploy review environment | |
on: | |
workflow_dispatch: | |
jobs: | |
publish_image: | |
name: Publish Docker image | |
runs-on: ubuntu-latest | |
outputs: | |
shortSha: ${{ steps.output-step.outputs.short-sha }} | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
- name: Inject slug/short variables | |
uses: rlespinasse/[email protected] | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
# Will automatically make nice tags, see the table here https://github.com/docker/metadata-action#basic | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: ghcr.io/blockscout/frontend | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Add SHORT_SHA env property with commit short sha | |
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV | |
- name: Add outputs | |
run: | | |
echo "::set-output name=short-sha::${{ env.SHORT_SHA }}" | |
id: output-step | |
- name: Build and push | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
file: ./Dockerfile | |
push: true | |
cache-from: type=gha | |
tags: ghcr.io/blockscout/frontend:prerelease-${{ env.GITHUB_REF_NAME_SLUG }} | |
labels: ${{ steps.meta.outputs.labels }} | |
build-args: | | |
GIT_COMMIT_SHA=${{ env.SHORT_SHA }} | |
deploy_review: | |
name: Deploy frontend | |
needs: publish_image | |
uses: blockscout/blockscout-ci-cd/.github/workflows/deploy_helmfile.yaml@master | |
with: | |
appName: review-$GITHUB_REF_NAME_SLUG | |
globalEnv: review | |
helmfileDir: deploy | |
kubeConfigSecret: ci/data/dev/kubeconfig/k8s-dev | |
vaultRole: ci-dev | |
secrets: inherit |