bump
This commit is contained in:
13
.github/workflows/node-cicd.yml
vendored
13
.github/workflows/node-cicd.yml
vendored
@ -40,9 +40,14 @@ jobs:
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{ secrets.ACTIONS_TOKEN || github.token}}
|
||||
|
||||
- run: |
|
||||
PACKAGE=$(npm pkg get name version|jq -r '"\(.name)@\(.version)"')
|
||||
mkdir ../deployment && cd ../deployment && npm i $PACKAGE
|
||||
- name: get package name and current version
|
||||
id: info
|
||||
run: |
|
||||
echo "package=$(npm pkg get name|jq -r '.name')" >> $GITHUB_OUTPUT
|
||||
echo "version=$(npm pkg get version|jq -r '.version')" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: install latest published package
|
||||
run: mkdir ../deployment && cd ../deployment && npm i ${{ steps.info.outputs.package }}@${{ steps.info.outputs.version }}
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{ secrets.ACTIONS_TOKEN || github.token }}
|
||||
|
||||
@ -60,4 +65,4 @@ jobs:
|
||||
aws-account-id: 515966519418
|
||||
dns-zone: 'test.aws.fireclover.cloud'
|
||||
subdomain: 'test-example'
|
||||
web-path: '../deployment/dist'
|
||||
web-path: '../deployment/node_modules/${{ steps.info.outputs.package }}/dist'
|
||||
|
||||
@ -5,6 +5,7 @@ import Box from '@mui/material/Box';
|
||||
import Link from '@mui/material/Link';
|
||||
import ProTip from './ProTip';
|
||||
|
||||
|
||||
function Copyright() {
|
||||
return (
|
||||
<Typography
|
||||
|
||||
Reference in New Issue
Block a user