Archive GitHub Pages in the Wayback Machine #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GitHub Actions workflow for Waystation version 1.8.0. | |
# Available as the file "sample-workflow.yml" from the software | |
# repository at https://github.com/caltechlibrary/waystation | |
name: GitHub Pages archiver | |
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/[email protected] | |
with: | |
dry_run: ${{github.event.inputs.dry_run || false}} |