Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/Petlja/etit3_prog
Browse files Browse the repository at this point in the history
  • Loading branch information
radlovacki committed Aug 28, 2024
2 parents d467191 + 2f24c53 commit f9db4a5
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Publish Workflow

on:
push:
branches:
- publish

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'

- name: Install dependencies from requirements.txt
run: |
pip install -r requirements.txt
- name: Run plct build
run: |
plct build
- name: Save files to docs folder
run: |
plct publish
- name: Get courseId from course.json
id: publish
run: |
COURSE_ID=$(python -c "import json; data = json.load(open('docs/course.json', 'r', encoding='utf-8')); print(data['toc_tree']['meta_data']['alias'])")
echo "::set-output name=courseId::$COURSE_ID"
- name: Install Azure CLI
run: |
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
- name: Upload to Azure Blob Storage
run: |
az storage blob upload-batch --source docs --destination publish/${{ steps.publish.outputs.courseId }} --pattern "*" --overwrite
env:
AZURE_STORAGE_CONNECTION_STRING: ${{ secrets.AZURE_STORAGE_CONNECTION_STRING }}

0 comments on commit f9db4a5

Please sign in to comment.