Fix sea control e2e tests #22
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: Application Build | |
on: | |
push: | |
paths: | |
- "**.css" | |
- "**.kt" | |
- "**.png" | |
- "**.js" | |
- "**.json" | |
- "**.snap" | |
- "**.ts" | |
- "**.tsx" | |
- "**.yml" | |
- ".github/workflows/cicd.yml" | |
- "infra/configurations/**.properties" | |
- "infra/docker/app/**" | |
- "**.sql" | |
- "backend/pom.xml" | |
- "backend/build.gradle.kts" | |
- "Makefile" | |
- "frontend" | |
schedule: | |
- cron: "38 11 */3 * *" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build and package | |
runs-on: ubuntu-22.04 | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set version and environment profile | |
uses: ./.github/actions/set-version-and-environment-profile | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@master | |
- name: Cache Docker layers | |
uses: actions/cache@v4 | |
with: | |
path: /tmp/.buildx-cache-app | |
key: ${{ runner.os }}-single-buildx-app-${{ github.ref_name }} | |
restore-keys: | | |
${{ runner.os }}-single-buildx-app- | |
- name: Build image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
load: true | |
builder: ${{ steps.buildx.outputs.name }} | |
file: infra/docker/app/Dockerfile | |
push: false | |
tags: monitorfish-app:${{ env.VERSION }} | |
cache-from: type=local,src=/tmp/.buildx-cache-app | |
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-app-new | |
build-args: | | |
IS_RELEASE=${{ env.IS_RELEASE }} | |
VERSION=${{ env.VERSION }} | |
ENV_PROFILE=${{ env.ENV_PROFILE }} | |
GITHUB_SHA=${{ github.sha }} | |
SENTRY_URL=${{ secrets.SENTRY_URL }} | |
SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} | |
SENTRY_ORG=${{ secrets.SENTRY_ORG }} | |
SENTRY_PROJECT=${{ secrets.SENTRY_PROJECT }} | |
# Temp fix | |
# https://github.com/docker/build-push-action/issues/252 | |
# https://github.com/moby/buildkit/issues/1896 | |
- name: Move cache | |
run: | | |
rm -rf /tmp/.buildx-cache-app | |
mv /tmp/.buildx-cache-app-new /tmp/.buildx-cache-app | |
- name: Upload image to artifacts | |
uses: ishworkh/[email protected] | |
with: | |
image: monitorfish-app:${{ env.VERSION }} |