Bump jasmine-core from 5.1.0 to 5.1.2 in /ui #675
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: build-project | |
on: | |
push: | |
pull_request: | |
branches: main | |
release: | |
types: [published] | |
env: | |
REGISTRY_GITHUB: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
variables: | |
outputs: | |
ref_name: ${{ steps.var.outputs.ref_name}} | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Setting global variables | |
uses: actions/github-script@v6 | |
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@v3 | |
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@v3 | |
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' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Download UI | |
uses: actions/download-artifact@v3 | |
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@v3 | |
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.10'}} | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
packages-dir: core/dist/ | |
- name: Publish assets to github | |
if: ${{github.event_name == 'release'}} | |
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: Load learninghouse wheel | |
uses: actions/download-artifact@v3 | |
with: | |
name: python-artifacts-3.10-${{ env.REF_NAME }} | |
path: docker/container | |
- name: Copy requirements.txt for core | |
run: cp core/requirements.txt docker/container/ | |
- 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@v5 | |
with: | |
builder: ${{ steps.buildx.outputs.name }} | |
context: docker | |
push: ${{github.event_name == 'release' || (github.event_name == 'push' && github.ref_name == 'main')}} | |
tags: ${{github.event_name == 'release' && steps.meta_release.outputs.tags || steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |