[V2] Upgrade fsnotify to v1.9.0 to fix hot reload and quit issues on … #503
This file contains hidden or 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: Upload Source Documents | |
on: | |
push: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
push_files_to_crowdin: | |
name: Push files to Crowdin | |
if: github.repository == 'wailsapp/wails' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Verify Changed files | |
id: changed-files | |
uses: step-security/changed-files@3dbe17c78367e7d60f00d78ae6781a35be47b4a1 # v45.0.1 | |
with: | |
files: | | |
website/**/*.mdx | |
website/**/*.md | |
website/**/*.json | |
- name: Setup Nodejs | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20.x | |
- name: Setup Task | |
uses: arduino/setup-task@v1 | |
with: | |
version: 3.x | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload source documents | |
if: steps.changed-files.outputs.any_changed == 'true' | |
env: | |
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} | |
working-directory: ./website | |
run: task crowdin:push |