Skip to content

Automatically publish tutorials to learning platform #34

Automatically publish tutorials to learning platform

Automatically publish tutorials to learning platform #34

Workflow file for this run

# This code is part of Qiskit.
#
# (C) Copyright IBM 2021.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.
name: Deployment
on:
push:
tags:
- '*'
jobs:
Deploy:
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install deps
run: pip install -U pip setuptools build
- name: Build sdist
run: python3 -m build
- uses: actions/upload-artifact@v3
with:
path: ./dist/*
- name: Deploy to Pypi
uses: pypa/gh-action-pypi-publish@release/v1
publish-tutorials:
runs-on: ubuntu-latest
if: "!contains(github.event.release.name, 'rc')"
steps:
- uses: actions/setup-python@v2
with:

Check failure on line 49 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

You have an error in your yaml syntax on line 49
python-version: 3.11
- name: Publish tutorials to learning.quantum-computing.ibm.com
env:
LEARNING_API_TOKEN: ${{ secrets.LEARNING_API_TOKEN_PRODUCTION }}
LEARNING_API_ENVIRONMENT: production
run: |
pip install git+https://github.com/frankharkins/learning-content-tools.git@12a71a904b0283b2ee44b63cd04ab8fe96e0df6f#subdirectory=iql-lesson-sync
cd docs/tutorials
sync-lessons --hide-urls