d.ts Exporter #98
Workflow file for this run
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: d.ts Exporter | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '37 15 * * 4' | |
jobs: | |
export: | |
name: "Export (${{ matrix.branch }})" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
branch: | |
- '6.0' | |
- 'master' | |
steps: | |
- run: | | |
sudo apt-get install -y \ | |
jq \ | |
moreutils | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ matrix.branch }} | |
- name: Determine commit | |
id: determine-commit | |
run: | | |
echo "sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT | |
- name: Set up node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
cache: "npm" | |
- run: npm install | |
- uses: actions/checkout@v4 | |
with: | |
repository: WoltLab/d.ts | |
ssh-key: ${{ secrets.WOLTLAB_D_TS_DEPLOY_KEY }} | |
path: d.ts | |
ref: ${{ matrix.branch }} | |
- name: Update the .d.ts files | |
run: | | |
npx tsc --declaration --emitDeclarationOnly --outdir ./d.ts/ | |
cp ./ts/global.d.ts ./d.ts/ | |
- name: Update dependencies in package.json | |
run: | | |
set -x | |
cd d.ts/ | |
jq --argfile dependencies ../package.json '.dependencies = ($dependencies |.dependencies)' ./package.json \ | |
|sponge ./package.json | |
if ! git diff --quiet package.json; then | |
npm install | |
fi | |
cd ../ | |
- name: Prepare git | |
run: | | |
git config --global user.name "WoltLab GmbH" | |
git config --global user.email "[email protected]" | |
- name: Push the update | |
run: | | |
set -x | |
cd d.ts/ | |
git add . | |
if git diff --cached --quiet; then | |
exit 0 | |
fi | |
git commit -m "Update ${{ github.repository }} definitions | |
Generated using: | |
npx tsc --declaration --emitDeclarationOnly --outdir ./d.ts/ | |
from ${{ github.repository }}@${{ steps.determine-commit.outputs.sha }}" | |
git push |