Hide unknown status from the actions table #1409
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: CI | |
on: push | |
jobs: | |
build_test_and_push: | |
name: Build Docker images, run tests and push to Docker registry | |
runs-on: self-hosted | |
env: | |
DOCKER_IMAGE: docker.kausal.tech/watch-ui | |
DOCKER_BUILDKIT: 1 | |
BUILDKIT_PROGRESS: plain | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Check for deployment branch | |
if: github.ref == 'refs/heads/deployment/production' || github.ref == 'refs/heads/deployment/staging' || github.ref == 'refs/heads/deployment/testing'|| github.ref == 'refs/heads/deployment/wip' | |
run: | | |
echo "DEPLOYMENT_TYPE=$(echo ${{ github.ref }} | cut -d / -f 4)" >> $GITHUB_ENV | |
- name: Building Docker base container | |
run: | | |
docker build \ | |
--build-arg YARN_NPM_REGISTRY_SERVER=${{ secrets.NPM_REGISTRY_SERVER }} \ | |
--build-arg YARN_NPM_AUTH_IDENT=${{ secrets.NPM_AUTH_IDENT }} \ | |
--tag kausal-watch-ui/base \ | |
--target base . | |
- name: Running Jest unit tests | |
run: docker run --rm --entrypoint '' kausal-watch-ui/base yarn test | |
- name: Set Sentry authentication token | |
if: env.DEPLOYMENT_TYPE | |
run: | | |
echo "SENTRY_AUTH_TOKEN=$SENTRY_AUTH_TOKEN" >> $GITHUB_ENV | |
env: | |
SENTRY_AUTH_TOKEN: '${{ secrets.SENTRY_AUTH_TOKEN }}' | |
- name: Building NextJS bundles | |
run: | | |
docker build \ | |
--build-arg SENTRY_ORG=${{ secrets.SENTRY_ORG }} \ | |
--build-arg SENTRY_URL=${{ secrets.SENTRY_URL }} \ | |
--build-arg SENTRY_PROJECT=${{ secrets.SENTRY_PROJECT }} \ | |
--build-arg GIT_REV=${{ github.sha }} \ | |
--build-arg GIT_REPO=${{ github.repository }} \ | |
--build-arg SENTRY_AUTH_TOKEN=$SENTRY_AUTH_TOKEN \ | |
--tag ${{ env.DOCKER_IMAGE }} \ | |
. | |
- name: Log into Docker registry | |
if: env.DEPLOYMENT_TYPE | |
uses: docker/login-action@v1 | |
with: | |
registry: docker.kausal.tech | |
username: docker | |
# FIXME: Instead of using the password, we should probably switch to token authentication with limited scope | |
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }} | |
# - name: Push latest tag to Docker registry | |
# if: github.ref == 'refs/heads/master' | |
# run: | | |
# docker push ${{ env.DOCKER_IMAGE }}:latest | |
- name: Tag and push to registry | |
if: env.DEPLOYMENT_TYPE | |
run: | | |
docker tag ${{ env.DOCKER_IMAGE }} ${{ env.DOCKER_IMAGE }}:${{ env.DEPLOYMENT_TYPE }}-${{ github.run_number }} | |
docker tag ${{ env.DOCKER_IMAGE }} ${{ env.DOCKER_IMAGE }}:${{ env.DEPLOYMENT_TYPE }}-latest | |
docker push ${{ env.DOCKER_IMAGE }}:${{ env.DEPLOYMENT_TYPE }}-${{ github.run_number }} | |
docker push ${{ env.DOCKER_IMAGE }}:${{ env.DEPLOYMENT_TYPE }}-latest |