This is an automated email from the ASF dual-hosted git repository.
joshtynjala pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flex-site.git
The following commit(s) were added to refs/heads/main by this push:
new 8a8f941cf github actions for pelican
8a8f941cf is described below
commit 8a8f941cfee70d80e3c5ffabfc6d8c81fcd8d938
Author: Josh Tynjala <[email protected]>
AuthorDate: Wed Jun 25 08:57:44 2025 -0700
github actions for pelican
---
.github/workflows/build-pelican.yml | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/.github/workflows/build-pelican.yml
b/.github/workflows/build-pelican.yml
new file mode 100644
index 000000000..c2d4346cc
--- /dev/null
+++ b/.github/workflows/build-pelican.yml
@@ -0,0 +1,21 @@
+name: Build a Pelican Website
+on:
+ push:
+ # This prevents the workflow from running automatically on a new branch
+ # When creating a new site branch, please ensure that the push and
checkout branches agree
+ # and that the action/pelican destination value is updated accordingly
+ branches: [ "main" ]
+ workflow_dispatch:
+jobs:
+ build-pelican:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ # This must equal the push/branches list above, and be appropriate
for the destination below
+ ref: 'main'
+ - uses: apache/infrastructure-actions/pelican@main
+ with:
+ # This must be appropriate for the branch being built
+ destination: 'asf-site'
+ gfm: 'true'
\ No newline at end of file