CI #1717
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
# This is a basic workflow to help you get started with Actions | |
name: CI | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the master branch | |
on: | |
push: | |
paths: | |
- 'trigger' | |
# - '**.sh' | |
# - '**.yml' | |
schedule: | |
- cron: "55 4 * * *" | |
#workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
# with: | |
# lfs: true | |
#- name: Checkout LFS objects | |
# run: git lfs checkout | |
# Runs a single command using the runners shell | |
- name: Proccessing Hosts... | |
env: | |
MY_ACTIONS: ${{ secrets.MY_ACTIONS_SECRET }} | |
run: | | |
bash ./Download-and-Process-Hosts.sh | |
# - name: Upload Hosts to Mirror (1/2) | |
# uses: deka0106/upload-to-dropbox@v2 | |
# with: | |
# dropbox_access_token: ${{ secrets.DROPBOX_ACCESS_TOKEN }} | |
# src: output/main/*.gz | |
# dest: /mirror/ | |
# multiple: true | |
# mode: overwrite | |
# - name: Generalize sources backup file name for mirror | |
# run: cp output/backup/sources-backup-*.zip output/backup/sources-backup.zip | |
# - name: Upload Sources Backup to Mirror | |
# uses: deka0106/upload-to-dropbox@v2 | |
# with: | |
# dropbox_access_token: ${{ secrets.DROPBOX_ACCESS_TOKEN }} | |
# src: output/backup/sources-backup.zip | |
# dest: /mirror/ | |
# mode: overwrite | |
# - name: Cleanup | |
# run: rm -f output/backup/sources-backup.zip | |
- name: Upload Backups to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: output/backup/* | |
tag: v1.0.0-backup | |
overwrite: true | |
file_glob: true | |
body: "These files get automatically updated every 24 hours. (DON'T PAY ATTENTION TO THE RELEASE DATE WRITTEN ABOVE)" | |
- name: Upload Hosts to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: output/main/* | |
tag: v1.0.0 | |
overwrite: true | |
file_glob: true | |
body: "These files get automatically updated (and replaced) every 24 hours. (DON'T PAY ATTENTION TO THE RELEASE DATE WRITTEN ABOVE!!, RELEASE DATE IS MENTIONED AT THE FIRST LINE OF FILES!!)" | |
# - name: Upload Hosts to Mirror (2/2) | |
# uses: deka0106/upload-to-dropbox@v2 | |
# with: | |
# dropbox_access_token: ${{ secrets.DROPBOX_ACCESS_TOKEN }} | |
# src: output/main/*.txt | |
# dest: /mirror/ | |
# multiple: true | |
# mode: overwrite | |
- name: Upload Hosts to Mirror | |
env: | |
SUPER_SECRET: ${{ secrets.DROPBOX_ACCESS_TOKEN }} | |
run: bash ./upload-to-mirror.sh | |
- name: Cleanup | |
run: rm -f -r output/ | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Auto Update | |
branch: master | |
commit_options: '--no-verify --signoff' | |
repository: . | |
commit_user_name: j-moriarti | |
commit_user_email: [email protected] | |
push_options: '--force' |