Archive #57
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 | |
on: | |
push: | |
paths: | |
# Workflow file itself | |
- '.github/workflows/Archive.yml' | |
schedule: | |
- cron: '0 4 1 * *' # At 04:00 on the first day of the month | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
links: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Move archive script | |
run: mv external/Phi/scripts/ci/ArchiveAllLinks.sh . | |
- name: Remove external directory | |
run: rm -rf external | |
- name: Run Script | |
run: ./ArchiveAllLinks.sh |