Skip to content

Allow disabling the isidentifier check in build_tarballs #1214

Allow disabling the isidentifier check in build_tarballs

Allow disabling the isidentifier check in build_tarballs #1214

Workflow file for this run

name: Documentation
on:
push:
branches:
- master
tags: '*'
pull_request:
env:
JULIA_PKG_SERVER: ""
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
statuses: write
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
with:
version: "1.7"
- uses: julia-actions/cache@v2
with:
cache-registries: "true"
- name: Install dependencies
shell: julia --color=yes --project=docs/ {0}
run: |
using Pkg
Pkg.Registry.update()
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
- uses: julia-actions/julia-docdeploy@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}