Skip to content

Temporarily disable Pages workflow until GitHub Pages is configured #9

Temporarily disable Pages workflow until GitHub Pages is configured

Temporarily disable Pages workflow until GitHub Pages is configured #9

Workflow file for this run

name: Pages

Check failure on line 1 in .github/workflows/pages.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pages.yml

Invalid workflow file

(Line: 3, Col: 4): Unexpected value ''
on:
# Temporarily disabled - no GitHub Pages setup yet
# push:
# branches:
# - main
# paths:
# - 'pcp/**'
# - 'archive-analysis/**'
permissions:
contents: write
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v4
with:
version: v3.14.0
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: .
config: .github/cr.yaml
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
deploy:
needs: release
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4