-
Notifications
You must be signed in to change notification settings - Fork 3
35 lines (31 loc) · 1.44 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Rebuild spaCy for SLOVO
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
deploy:
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Install SSH Key
uses: shimataro/[email protected]
with:
key: ${{ secrets.SSH_KEY }}
known_hosts: ${{ secrets.KNOWN_HOSTS }}
- name: Rebuild spaCy from scratch
if: "contains(github.event.commits[0].message, '[rebuild]')"
shell: bash
run: ssh ${{ secrets.USER }}@${{ secrets.SERVER }} "fish && cd slovo/spacy-serbian-pipeline && git pull && ./install.fish -r2"
- name: Update Serbian data
if: "contains(github.event.commits[0].message, '[update]')"
shell: bash
run: ssh ${{ secrets.USER }}@${{ secrets.SERVER }} "fish && cd slovo/spacy-serbian-pipeline && git pull && ./install.fish -u2"
- name: Train Serbian model
if: "contains(github.event.commits[0].message, '[train]')"
shell: bash
run: ssh ${{ secrets.USER }}@${{ secrets.SERVER }} "fish && cd slovo/spacy-serbian-pipeline && git pull && ./install.fish -t2"