Skip to content

Bump @angular/compiler from 18.1.0 to 18.2.7 in /ui #1047

Bump @angular/compiler from 18.1.0 to 18.2.7 in /ui

Bump @angular/compiler from 18.1.0 to 18.2.7 in /ui #1047

Workflow file for this run

name: build-project
on:
push:
pull_request:
branches: main
release:
types: [published]
env:
REGISTRY_GITHUB: ghcr.io
IMAGE_NAME: ${{ github.repository }}
PACKAGE_BRANCHES: '["main"]'
jobs:
variables:
outputs:
ref_name: ${{ steps.var.outputs.ref_name}}
runs-on: "ubuntu-latest"
steps:
- name: Setting global variables
uses: actions/github-script@v7
id: var
with:
script: |
core.setOutput('ref_name', '${{ github.ref_name }}'.toLowerCase().replaceAll(/[/.]/g, '-').trim('-'));
build-ui:
runs-on: ubuntu-latest
needs: [variables]
env:
REF_NAME: ${{ needs.variables.outputs.ref_name }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: ui/package-lock.json
- name: Install dependencies
run: npm install
working-directory: ui
- name: Build
run: npm run build:core
working-directory: ui
- name: Save angular artifacts
uses: actions/upload-artifact@v4
with:
name: ui-artifacts-${{ env.REF_NAME }}
path: |
ui/dist/learninghouse
build-core:
runs-on: ubuntu-latest
needs: [variables, build-ui]
env:
REF_NAME: ${{ needs.variables.outputs.ref_name }}
permissions:
id-token: write
contents: write
strategy:
matrix:
python-version:
- '3.10'
- '3.11'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache Python packages
uses: actions/cache@v4
with:
path: |
~/.cache/pip
!~/.cache/pip/log
key: ${{ runner.os }}-python-${{ matrix.python-version }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-python-${{ matrix.python-version }}-pip-
${{ runner.os }}-python-${{ matrix.python-version }}-
${{ runner.os }}-python-
${{ runner.os }}-pip-
- name: Download UI
uses: actions/download-artifact@v4
with:
name: ui-artifacts-${{ env.REF_NAME }}
path: core/learninghouse/ui
- name: Copy README.md LICENSE and THIRD-PARTY-NOTICES
run: |
cp README.md LICENSE THIRD-PARTY-NOTICES core/
- name: Install build package
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
working-directory: core
- name: Save python artifacts
uses: actions/upload-artifact@v4
with:
name: python-artifacts-${{ matrix.python-version }}-${{ env.REF_NAME }}
path: |
core/dist
- name: Publish package to pypi
if: ${{github.event_name == 'release' && matrix.python-version == '3.11'}}
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: core/dist/
- name: Publish assets to github
if: ${{github.event_name == 'release' && matrix.python-version == '3.11'}}
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ github.token }}
file: core/dist/*
tag: ${{ github.ref }}
overwrite: true
file_glob: true
build-docker:
runs-on: ubuntu-latest
needs: [variables, build-core]
env:
REF_NAME: ${{ needs.variables.outputs.ref_name }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download UI
uses: actions/download-artifact@v4
with:
name: ui-artifacts-${{ env.REF_NAME }}
path: core/learninghouse/ui
- name: Copy core learninghouse to docker
run: cp -r core/* docker/
- name: Generate static _version.py
run: python freeze_version.py
working-directory: docker
- name: Set up QEMU
uses: docker/setup-qemu-action@master
with:
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@master
- name: Log in to the Docker github container registry
if: ${{github.event_name == 'release' || (github.event_name == 'push' && github.ref_name == 'main')}}
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY_GITHUB }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Log in to the Docker container registry
if: ${{github.event_name == 'release'}}
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker (No Release)
id: meta
if: ${{github.event_name != 'release'}}
uses: docker/metadata-action@v5
with:
images: |
${{ env.REGISTRY_GITHUB }}/${{ env.IMAGE_NAME }}
- name: Extract metadata (tags, labels) for Docker (Release)
id: meta_release
if: ${{github.event_name == 'release'}}
uses: docker/metadata-action@v5
with:
images: |
${{ env.IMAGE_NAME }}
${{ env.REGISTRY_GITHUB }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
builder: ${{ steps.buildx.outputs.name }}
context: docker
push: ${{github.event_name == 'release' || (github.event_name == 'push' && contains(fromJSON(env.PACKAGE_BRANCHES), github.ref_name))}}
tags: ${{github.event_name == 'release' && steps.meta_release.outputs.tags || steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}