Weekly deploy #269
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: Weekly deploy | |
on: | |
schedule: | |
# every sunday | |
- cron: '0 0 * * 0' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
# use master branch | |
- uses: actions/checkout@master | |
with: | |
ref: master | |
- name: Use Node.js 14 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14 | |
- name: configure DNS server | |
run: | | |
sudo mkdir /usr/lib/systemd/resolved.conf.d | |
echo "[Resolve]" > resolved.conf | |
echo "DNS=8.8.8.8" >> resolved.conf | |
sudo mv resolved.conf /usr/lib/systemd/resolved.conf.d/resolved.conf | |
sudo systemctl daemon-reload | |
sudo systemctl restart systemd-networkd | |
sudo systemctl restart systemd-resolved | |
- name: install and lint | |
working-directory: ./scripts | |
run: | | |
npm install | |
npm run lint | |
- name: update papers | |
working-directory: ./scripts | |
run: | | |
rm ../data/**/_Example.ttl | |
npm run papers | |
- name: build | |
working-directory: ./scripts | |
run: npm run build | |
- name: prepare deploy | |
working-directory: ./scripts | |
run: | | |
cp exoframe.json public/ | |
cp Dockerfile public/ | |
- name: deploy | |
working-directory: ./scripts/public | |
run: npx exoframe -u -e https://dice-website.cs.upb.de -t $EXO_TOKEN_DICE | |
env: | |
EXO_TOKEN_DICE: ${{ secrets.EXO_TOKEN_DICE }} | |
uploadData: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
ref: master | |
- name: Use Node.js 14 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14 | |
- name: configure DNS server | |
run: | | |
sudo mkdir /usr/lib/systemd/resolved.conf.d | |
echo "[Resolve]" > resolved.conf | |
echo "DNS=8.8.8.8" >> resolved.conf | |
sudo mv resolved.conf /usr/lib/systemd/resolved.conf.d/resolved.conf | |
sudo systemctl daemon-reload | |
sudo systemctl restart systemd-networkd | |
sudo systemctl restart systemd-resolved | |
- name: install and lint | |
working-directory: ./scripts | |
run: | | |
npm install | |
npm run lint | |
- name: update papers | |
working-directory: ./scripts | |
run: | | |
rm ../data/**/_Example.ttl | |
npm run papers | |
- name: collect RDF data | |
run: cat `find . -name "*.ttl" | grep -v "_Example.ttl"` > data.ttl | |
- name: upload to FTP | |
uses: tomasbkk/[email protected] | |
with: | |
user: ${{ secrets.FTP_USER }} | |
password: ${{ secrets.FTP_PASSWORD }} | |
host: ${{ secrets.FTP_HOST }} | |
src: data.ttl | |
dest: public/website/data/data.ttl | |
secure: true | |
rejectUnauthorized: false |