Skip to content

tsv

tsv #1372

Workflow file for this run

name: tsv
on:
schedule:
- cron: '0 2 * * *'
workflow_dispatch:
jobs:
tsv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setenv
run: |
echo "$HOME/.roswell/bin" >> $GITHUB_PATH
echo "ROSWELL_BRANCH=master" >> $GITHUB_ENV
echo "ROSWELL_INSTALL_DIR=$HOME/.roswell" >> $GITHUB_ENV
- name: Install Roswell
env:
LISP: sbcl-bin/2.4.0
run: |
curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh
ros install snmsts/sn.github
- name: update tsv
env:
GITHUB_OAUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
make tsv upload-tsv
cat sbcl-bin_uri.tsv
- name: update table
env:
GITHUB_OAUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
make table
git config user.name "$(git --no-pager log --format=format:'%an' -n 1)"
git config user.email "$(git --no-pager log --format=format:'%ae' -n 1)"
(git add table.md && git commit -m "[ci skip] table update" && git push) || true