Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/post-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Toggle webhook to pull latest release onto dl.pelicanplatform.org
name: post-release

on:
release:
types: [published]

jobs:
toggle-webhook:
runs-on: ubuntu-latest
steps:
- name: Toggle Webhook
run: |
curl -X POST https://dl.pelicanplatform.org/api/api/hooks/release-download-toggle
5 changes: 5 additions & 0 deletions docs/pages/install.mdx
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
import DownloadsComponent from "/components/DownloadsComponent";
import { Callout } from 'nextra/components'

# Install Pelican

This document lists Pelican's operating system requirements and explains how you can download and install the correct Pelican executable.

<Callout>
Know what you want? Visit our [Downloads Repository](https://dl.pelicanplatform.org).
</Callout>

## Before Starting

Pelican executables can run as a **client** or a **server**, and both are packaged in the same executable. However, if you intend to run a server, some non-RPM installations may require additional package dependencies.
Expand Down
Loading