CI-Autobuild #1862
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-Autobuild | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the gh-pages branch | |
push: | |
branches: [master] | |
# pull_request: | |
# branches: [master] | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
# run every night: | |
- cron: '44 2 * * *' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'warning' | |
# 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-24.04 | |
# 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@v3 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
# Runs a set of commands using the runners shell | |
- name: CI Autobuild | |
env: | |
SVN_USER: ${{ secrets.SVN_USER }} | |
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} | |
run: | | |
sudo apt update | |
sudo apt-get -y install python3 python3-pip python3-pandas python3-numpy subversion wget | |
pip3 install dfply | |
bash scripts/build-site.sh | |
- name: CI Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./dist | |
publish_branch: gh-pages |