Update TruyenFull url (#1403) #219
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: Publish Plugins | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
Publish: | |
if: github.repository == 'LNReader/lnreader-plugins' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.REPO_SCOPED_TOKEN }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Install Dependencies | |
run: npm install --omit=dev --ignore-scripts | |
- name: Publish Plugins | |
run: | | |
git config user.name "github-actions[bot]" | |
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | |
npm run host-linux | |
shell: bash |