skip to Main Content

Ubuntu – github actions doesn't recognize configuration variables

I am using the very simple workflow: name: Deploy Frontend # env: # REACT_APP_API_URL: ${{ vars.REACT_APP_API_URL }} # CORS_ALLOWED_ORIGINS: ${{ vars.CORS_ALLOWED_ORIGINS }} env: REACT_APP_API_URL: MY_REACT_APP_API_URL CORS_ALLOWED_ORIGINS: MY_CORS_ALLOWED_ORIGINS on: push: branches: [main, staging, frontend] paths: - 'frontend/**' - '.github/workflows/deploy_frontend.yml' workflow_dispatch: jobs:…

VIEW QUESTION

Ubuntu – Why does bash -c '<instructions>' can't correctly capture my command?

I am using environment modules on my Ubuntu container. https://modules.readthedocs.io When I call the following command: module av It shows me this kind of output: > module av ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- /project/mb/modulefiles -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- meco/bamtools/2.4.1 meco/bbmap/39.00 meco/bedtools/2.23.0 meco/bhtsne/1.0 meco/bwa/0.7.17 meco/diamond/2.1.6 meco/fastani/1.33 meco/fasttree/2.1.10 meco/hmmer/3.3.2…

VIEW QUESTION

docker build exactly same requirements.txt & Dockerfile, 4 weeks ago success, but currently failed

Steps to reproduce the failure. Docker version 24.0.2 Python version in container 3.10.9 see base image requirements.txt pycurl==7.45.1 delta==0.4.2 fiftyone==0.21.0 filetype==1.2.0 Flask==2.2.2 kfp==1.8.19 kfp_pipeline_spec==0.1.16 numpy==1.23.5 pandas==1.5.2 Pillow==9.4.0 pyspark==3.3.2 requests==2.28.1 shortuuid==1.0.11 ultralytics==8.0.109 cvat_sdk==2.4.4 onnxruntime==1.14.1 PyJWT==2.7.0 bcrypt==4.0.1 email-validator==2.0.0.post2 decorator==5.1.1 Flask-Admin==1.5.8 Flask-CAS==1.0.2 Flask-Cors==3.0.10…

VIEW QUESTION
Back To Top
Search