26 lines
473 B
YAML
26 lines
473 B
YAML
name: update i18n repo
|
|
|
|
on:
|
|
repository_dispatch:
|
|
workflow_dispatch:
|
|
inputs:
|
|
ssh:
|
|
description: 'SSH connection to Actions'
|
|
required: false
|
|
default: 'false'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: test
|
|
run: |
|
|
chmod +x ./help/action.sh
|
|
./help/action.sh
|
|
ls
|
|
cat en_us.json
|
|
shell: bash
|