chore: add ghcr login for grafbase (#620) #270
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- '**.md' | ||
workflow_dispatch: | ||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
# allow one concurrent deployment | ||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: true | ||
jobs: | ||
test-all: | ||
uses: ./.github/workflows/test-all.yaml | ||
Check failure on line 24 in .github/workflows/ci.yaml GitHub Actions / .github/workflows/ci.yamlInvalid workflow file
|
||
secrets: inherit | ||
build-page: | ||
timeout-minutes: 10 | ||
needs: [test-all] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
- run: pip install mkdocs-material | ||
- name: Download Result | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: results.md | ||
- name: Build GH page | ||
run: | | ||
mv results.md docs/index.md | ||
mkdocs build | ||
- name: Upload GH page | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: site | ||
publish-page: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
needs: build-page | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |