Fix docs CI workflow

This commit is contained in:
Sijawusz Pur Rahnama 2023-01-03 16:36:33 +01:00
parent c5748aec71
commit 853f84d954

View file

@ -4,8 +4,12 @@ on:
push:
branches: [master]
permissions:
contents: write
jobs:
build:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Inject slug/short variables
@ -16,8 +20,6 @@ jobs:
- name: Download source
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Install dependencies
run: shards install
@ -27,22 +29,6 @@ jobs:
sed -i -e 's:<.*>::g' README.md
crystal docs --project-version="${{ env.GITHUB_REF_SLUG }}" --source-refname="${{ env.GITHUB_SHA_SHORT }}"
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: docs
path: docs
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: docs
path: docs
- name: Deploy docs 🚀
uses: JamesIves/github-pages-deploy-action@v4
with: