Skip to content

Workflow file for this run

on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
name: "Stable Tag"
permissions:
contents: read
jobs:
release:
name: "Release"
permissions:
contents: write
uses: ./.github/workflows/part_release.yml
with:
releaseName: "${{ github.ref_name }}"
stable: true
docs:
name: "Docs"
needs: ["release"]
uses: ./.github/workflows/part_docs.yml
with:
releaseName: "${{ github.ref_name }}"
deploy_pages:
name: "Deploy to GitHub Pages"
needs: ["release", "docs"]
runs-on: ubuntu-latest
if: ${{ inputs.publishToPages }}
needs: ["generate"]

Check failure on line 41 in .github/workflows/tag-stable.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tag-stable.yml

Invalid workflow file

You have an error in your yaml syntax on line 41
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
upload_release:
name: "Upload"
needs: ["release", "docs"]
runs-on: ubuntu-latest
if: ${{ inputs.releaseName }}
needs: ["generate"]
permissions:
contents: write
attestations: write
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: docs
path: docs
- run: |
tar -czvf docs.tar.gz docs
- name: Upload
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
gh release upload --clobber "${{ inputs.releaseName }}" \
docs.tar.gz
- name: "Attest Documentation"
uses: actions/attest@v1
subject-path: "docs.tar.gz"