This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
Update archive.yml #1
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
name: Archive to Wayback Machine | |
on: | |
push: | |
jobs: | |
archive: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.12 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install wayback-machine-archiver | |
- name: Archive to Wayback Machine | |
run: | | |
archiver https://z1g-project.pages.dev | |
archiver https://z1g-project.pages.dev/projects | |
archiver https://z1g-project.pages.dev/status | |
archiver https://z1g-project.pages.dev/support/ | |
archiver https://z1g-project.pages.dev/discord/ | |
archiver https://z1g-project.pages.dev/copyright/ | |
archiver https://z1g-project.pages.dev/copyright/3rdparty/ | |
archiver https://z1g-project.pages.dev/copyright/terms | |
archiver https://z1g-project.pages.dev/copyright/licenses/MIT.txt |