Skip to content

Commit

Permalink
yml
Browse files Browse the repository at this point in the history
  • Loading branch information
wuebbena committed Jan 13, 2024
1 parent 639e62c commit f9943be
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
Binary file modified .DS_Store
Binary file not shown.
26 changes: 26 additions & 0 deletions workflows/archive-github-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
```
# GitHub Actions workflow for Waystation version 1.5.0.
# Available as the file "sample-workflow.yml" from the software
# repository at https://github.com/caltechlibrary/waystation
name: Archive GitHub Pages
run-name: Archive GitHub Pages in the Wayback Machine
on:
release:
types: [published]
workflow_dispatch:
inputs:
dry_run:
description: "Run without actually sending URLs"
type: boolean
jobs:
run-waystation:
name: Run Waystation
runs-on: ubuntu-latest
steps:
- uses: caltechlibrary/waystation@main
with:
dry_run: ${{github.event.inputs.dry_run || false}}
```

0 comments on commit f9943be

Please sign in to comment.