diff --git a/.github/workflows/render-datasheets.yaml b/.github/workflows/render-datasheets.yaml new file mode 100644 index 0000000000..2a234840fd --- /dev/null +++ b/.github/workflows/render-datasheets.yaml @@ -0,0 +1,23 @@ +name: Render datasheets + +on: + workflow_dispatch: + +jobs: + render-datasheets: + runs-on: ubuntu-latest + env: + REPO_ACCESS_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }} + + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 14 + cache: "npm" + cache-dependency-path: "**/package-lock.json" + + - name: Render + run: | + cd scripts/datasheet-rendering + ./render-datasheets.sh \ No newline at end of file