Registry Database Archive #2
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 action to generate of the registry database archives | |
# | |
name: Registry Database Archive | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 1,15 * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout source | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
- name: Setup mongo tools - only shell | |
uses: boly38/action-mongo-tools@stable | |
with: | |
mongo-shell: "false" | |
mongo-tools: "true" | |
- name: Install python libraries | |
run: pip3 install --user -r backend/requirements.txt | |
- name: fortran_package | |
run: cd backend && python generate_tarball.py | |
- name: Archives | |
uses: actions/upload-artifact@v2 | |
with: | |
name: registry_database | |
path: backend/static/ |