mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
51fc8f0550
## About the changes Running `yarn install` without the `dist` folder will trigger a `yarn build` automatically as part of the `prepare script` As we can see here: https://github.com/Unleash/unleash/actions/runs/5200272004/jobs/9378770279 ``` [build:frontend] ✓ built in 41.10s // more output [build:frontend] ✓ built in 39.81s ```
60 lines
1.9 KiB
YAML
60 lines
1.9 KiB
YAML
name: 'Publish to npm'
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [18.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Setup to npm
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
registry-url: 'https://registry.npmjs.org'
|
|
cache: 'yarn'
|
|
- name: Build
|
|
run: |
|
|
yarn install --frozen-lockfile
|
|
- name: Publish to npm
|
|
run: |
|
|
LATEST=$(npm show unleash-server version)
|
|
TAG=$(node scripts/npm-tag.js $LATEST)
|
|
npm publish --tag ${TAG:-latest}
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
- uses: aws-actions/configure-aws-credentials@v2
|
|
with:
|
|
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
aws-region: ${{ secrets.AWS_DEFAULT_REGION }}
|
|
- name: Get the version
|
|
id: get_version
|
|
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
|
|
- name: Publish static assets to S3
|
|
run: |
|
|
aws s3 cp frontend/build s3://getunleash-static/unleash/${{ steps.get_version.outputs.VERSION }} --recursive
|
|
- name: Trigger sync
|
|
uses: actions/github-script@v6
|
|
with:
|
|
github-token: ${{ secrets.UNLEASH_CI_BUILDER_GITHUB_TOKEN }}
|
|
script: |
|
|
await github.rest.actions.createWorkflowDispatch({
|
|
owner: 'ivarconr',
|
|
repo: 'unleash-enterprise',
|
|
workflow_id: 'cicd.yaml',
|
|
ref: 'master',
|
|
inputs: {
|
|
commit: "${{ github.event.head_commit.id }}",
|
|
actor: "${{ github.actor }}",
|
|
message: ${{ toJSON(github.event.head_commit.message) }},
|
|
}
|
|
})
|