Bump nwtgck/actions-netlify from 2.1 to 3.0 #49
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: Translate | |
on: [push, pull_request] | |
jobs: | |
translate: | |
# Always skip | |
# FIXME: msgcat: input file 'noVNC.html.pot' doesn't contain a header entry with a charset specification | |
if: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- run: npm update | |
- run: sudo apt-get install gettext | |
- run: make -C po update-pot | |
- run: make -C po update-po | |
- run: make -C po update-js |