diff --git a/.github/workflows/Create_files_list.yaml b/.github/workflows/Create_files_list.yaml index 523fcee..d0bd868 100644 --- a/.github/workflows/Create_files_list.yaml +++ b/.github/workflows/Create_files_list.yaml @@ -1,7 +1,10 @@ name: Create File List for ESL Homepage on: + schedule: + - cron: "0 8 * * 0" workflow_dispatch: + jobs: update-repo: @@ -33,19 +36,19 @@ jobs: arch: amd64 # Run python script for create the JSON Files for each Product - - name: Generate new JSON files for ESL Homepage + - name: Generate new Erlang JSON files for ESL Homepage run: | python3 file_list_creator.py aws s3 sync . s3://binaries2.erlang-solutions.com --acl public-read --exclude "*" --include "*.json" - # Run python script for create the JSON Files for each Product - - name: Generate new JSON files for ESL Homepage + # Run python script for create the JSON Files for Elixir Product + - name: Generate new Elixir JSON files for ESL Homepage run: | python3 file_list_creator_elixir.py aws s3 sync . s3://binaries2.erlang-solutions.com --acl public-read --exclude "*" --include "*.json" - # Run python script for create the JSON Files for each Product - - name: Generate new JSON files for ESL Homepage + # Run python script for create the JSON Files for MIM Product + - name: Generate new MongooseIM JSON files for ESL Homepage run: | python3 file_list_creator_mongooseim.py aws s3 sync . s3://binaries2.erlang-solutions.com --acl public-read --exclude "*" --include "*.json"