- Updated e-wall permissions #34
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: NPM Publish | |
on: | |
push: | |
tags: | |
- '*.*.*' | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: set version from tag | |
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: print version number | |
run: echo ${{ env.RELEASE_VERSION }} | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
- name: configure git | |
run: | | |
git config user.email "[email protected]" | |
git config user.name "Plattar" | |
- name: set pre-release version | |
run: npm version --prefix plattar-web ${{ env.RELEASE_VERSION }} | |
- name: write version.js | |
run: rm -rf plattar-web/version.js && echo 'module.exports = "${{ env.RELEASE_VERSION }}";' > plattar-web/version.js | |
- name: copy README | |
run: cp README.md plattar-web/README.md | |
- name: copy graphics | |
run: cp -R graphics plattar-web/ | |
- name: NPM Build | |
run: npm run --prefix plattar-web clean:build | |
- uses: JS-DevTools/npm-publish@v1 | |
with: | |
package: ./plattar-web/package.json | |
token: ${{ secrets.NPM_PUBLISH_KEY }} | |
access: 'public' |