Skip to content

Quote python version string #1

Quote python version string

Quote python version string #1

Workflow file for this run

name: CD
on:
push:
tags:
- '*'
env:
PY_VERSION: 3.10
jobs:
conda:
name: Build with conda and upload
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
with:
fetch-tags: true
fetch-depth: 0
- name: Setup conda environment
uses: conda-incubator/setup-miniconda@11b562958363ec5770fef326fe8ef0366f8cbf8a
with:
miniconda-version: "latest"
python-version: "${{ env.PY_VERSION }}""

Check failure on line 27 in .github/workflows/CD.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/CD.yml

Invalid workflow file

You have an error in your yaml syntax on line 27
environment-file: conda/environment.yml
auto-update-conda: false
auto-activate-base: false
show-channel-urls: true
- name: Build and upload the conda package
uses: uibcdf/action-build-and-upload-conda-packages@c6e7a90ad5e599d6cde76e130db4ee52ad733ecf
with:
meta_yaml_dir: conda
python-version: ${{ env.PY_VERSION }}
user: accessnri
label: main
token: ${{ secrets.anaconda_token }}