Support for new way of sending empty time series (#538) #442
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: GitHub pages | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build and publish | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- name: Checkout origin/master to master/ | |
uses: actions/checkout@v2 | |
with: | |
path: master | |
- name: Checkout origin/gh-pages to gh-pages/ | |
uses: actions/checkout@v2 | |
with: | |
ref: gh-pages | |
path: gh-pages | |
- name: Install Linux Kerberos dependency | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libkrb5-dev | |
- name: Install poetry | |
run: curl -sSL https://install.python-poetry.org | python3 - --version 1.7.1 | |
- name: Build and publish page | |
run: | | |
git -C gh-pages config user.name $GITHUB_ACTOR | |
git -C gh-pages config user.email "$GITHUB_ACTOR@bots.github.com" | |
./master/.github/workflows/pages.sh master/ gh-pages/ |