2022-04-05 21:18:25 +02:00
|
|
|
name: 'Publish to npm'
|
2022-04-05 21:09:03 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- 'v*'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-04-18 10:35:32 +02:00
|
|
|
node-version: [18.x]
|
2022-04-05 21:09:03 +02:00
|
|
|
|
|
|
|
steps:
|
2023-10-05 10:19:57 +02:00
|
|
|
- uses: actions/checkout@v4
|
2023-04-18 14:42:49 +02:00
|
|
|
- name: Setup to npm
|
2024-01-17 08:56:41 +01:00
|
|
|
uses: actions/setup-node@v4
|
2022-06-09 14:26:35 +02:00
|
|
|
with:
|
2023-10-26 09:09:03 +02:00
|
|
|
node-version: 18.x
|
2022-06-09 14:26:35 +02:00
|
|
|
registry-url: 'https://registry.npmjs.org'
|
|
|
|
cache: 'yarn'
|
2023-04-18 14:42:49 +02:00
|
|
|
- name: Build
|
|
|
|
run: |
|
2022-06-09 14:26:35 +02:00
|
|
|
yarn install --frozen-lockfile
|
2023-04-18 14:42:49 +02:00
|
|
|
- name: Publish to npm
|
|
|
|
run: |
|
2022-06-09 14:26:35 +02:00
|
|
|
LATEST=$(npm show unleash-server version)
|
|
|
|
TAG=$(node scripts/npm-tag.js $LATEST)
|
|
|
|
npm publish --tag ${TAG:-latest}
|
|
|
|
env:
|
2022-04-05 21:09:03 +02:00
|
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
2023-06-06 15:03:11 +02:00
|
|
|
- uses: aws-actions/configure-aws-credentials@v2
|
2022-08-26 09:25:31 +02:00
|
|
|
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
|