Skip to content

Bump cipher-base from 1.0.4 to 1.0.7 in /frontend #241

Bump cipher-base from 1.0.4 to 1.0.7 in /frontend

Bump cipher-base from 1.0.4 to 1.0.7 in /frontend #241

Workflow file for this run

name: Build CLI and print hash
on:
push:
jobs:
build:
strategy:
matrix:
# os: [ubuntu-22.04, ubuntu-24.04, ubuntu-22.04-arm, ubuntu-24.04-arm]
os: [ubuntu-22.04, ubuntu-24.04]
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }}
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Set up Docker
uses: docker/setup-docker-action@b60f85385d03ac8acfca6d9996982511d8620a19 # v4.3.0
- name: Build using Docker
run: |
# MOPS_VERSION=$(cd cli && npm pkg get version | tr -d \")
# echo MOPS_VERSION=$MOPS_VERSION
# if [ -z "$MOPS_VERSION" ]; then
# echo "MOPS_VERSION is empty"
# exit 1
# fi
MOPS_VERSION=0.0.0
cd cli
docker build . --build-arg COMMIT_HASH=${{ github.sha }} --build-arg MOPS_VERSION=$MOPS_VERSION -t mops
OUTPUT=$(docker run --rm mops || echo ".")
echo "$OUTPUT" >> $GITHUB_STEP_SUMMARY