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:
|
env:
|
||||||
NODE_AUTH_TOKEN: ${{ secrets.ACTIONS_TOKEN || github.token}}
|
NODE_AUTH_TOKEN: ${{ secrets.ACTIONS_TOKEN || github.token}}
|
||||||
|
|
||||||
- run: |
|
- name: get package name and current version
|
||||||
PACKAGE=$(npm pkg get name version|jq -r '"\(.name)@\(.version)"')
|
id: info
|
||||||
mkdir ../deployment && cd ../deployment && npm i $PACKAGE
|
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:
|
env:
|
||||||
NODE_AUTH_TOKEN: ${{ secrets.ACTIONS_TOKEN || github.token }}
|
NODE_AUTH_TOKEN: ${{ secrets.ACTIONS_TOKEN || github.token }}
|
||||||
|
|
||||||
@ -60,4 +65,4 @@ jobs:
|
|||||||
aws-account-id: 515966519418
|
aws-account-id: 515966519418
|
||||||
dns-zone: 'test.aws.fireclover.cloud'
|
dns-zone: 'test.aws.fireclover.cloud'
|
||||||
subdomain: 'test-example'
|
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 Link from '@mui/material/Link';
|
||||||
import ProTip from './ProTip';
|
import ProTip from './ProTip';
|
||||||
|
|
||||||
|
|
||||||
function Copyright() {
|
function Copyright() {
|
||||||
return (
|
return (
|
||||||
<Typography
|
<Typography
|
||||||
|
|||||||
Reference in New Issue
Block a user