mirror of
https://github.com/MikaylaFischler/cc-mek-scada.git
synced 2024-08-30 18:22:34 +00:00
80 lines
2.8 KiB
YAML
80 lines
2.8 KiB
YAML
# Deploy installation manifests and shields versions
|
|
name: Deploy Installation Data
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
- devel
|
|
|
|
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
permissions:
|
|
contents: read
|
|
pages: write
|
|
id-token: write
|
|
|
|
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
|
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
|
concurrency:
|
|
group: "pages"
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
# Single deploy job since we're just deploying
|
|
deploy:
|
|
environment:
|
|
name: github-pages
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup Pages
|
|
uses: actions/configure-pages@v3
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v3.1.3
|
|
# Generate manifest + shields files for main branch
|
|
- name: Checkout main
|
|
id: checkout-main
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: 'main'
|
|
clean: false
|
|
- name: Create outputs folders
|
|
if: success() || failure()
|
|
shell: bash
|
|
run: mkdir deploy; mkdir deploy/manifests; mkdir deploy/manifests/main deploy/manifests/devel
|
|
- name: Generate manifest and shields for main branch
|
|
id: manifest-main
|
|
if: ${{ (success() || failure()) && steps.checkout-main.outcome == 'success' }}
|
|
run: python build/imgen.py shields
|
|
- name: Save main's manifest
|
|
if: ${{ (success() || failure()) && steps.manifest-main.outcome == 'success' }}
|
|
run: mv install_manifest.json deploy/manifests/main
|
|
# Generate manifest for devel branch
|
|
- name: Checkout devel
|
|
id: checkout-devel
|
|
if: success() || failure()
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: 'devel'
|
|
clean: false
|
|
- name: Generate manifest for devel
|
|
id: manifest-devel
|
|
if: ${{ (success() || failure()) && steps.checkout-devel.outcome == 'success' }}
|
|
run: python build/imgen.py
|
|
- name: Save devel's manifest
|
|
if: ${{ (success() || failure()) && steps.manifest-devel.outcome == 'success' }}
|
|
run: mv install_manifest.json deploy/manifests/devel
|
|
# All artifacts ready now, upload deploy directory
|
|
- name: Upload artifacts
|
|
id: upload-artifacts
|
|
if: ${{ (success() || failure()) && (steps.manifest-main.outcome == 'success' || steps.manifest-latest.outcome == 'success' || steps.manifest-devel.outcome == 'success') }}
|
|
uses: actions/upload-pages-artifact@v1
|
|
with:
|
|
# Upload manifest JSON
|
|
path: 'deploy/'
|
|
- name: Deploy to GitHub Pages
|
|
if: ${{ (success() || failure()) && steps.upload-artifacts.outcome == 'success' }}
|
|
id: deployment
|
|
uses: actions/deploy-pages@v2
|