Update OpenPGP.js #5
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: Update OpenPGP.js | |
on: | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 21 | |
- run: npm --prefix openpgpjs install | |
- run: cp openpgpjs/dist/openpgp.min.js docs/js/openpgp.min.js | |
- run: cp openpgpjs/dist/openpgp.min.js.map docs/js/openpgp.min.js.map | |
- name: Open pull request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
branch: feature/update-openpgpjs | |
title: Update of OpenPGP.js | |
commit-message: Update of OpenPGP.js | |
add-paths: | | |
docs/js/openpgp.min.js | |
docs/js/openpgp.min.js.map |