Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cd: Create direct CDN deployment and NPM deprecation workflow
Browse files Browse the repository at this point in the history
adebayor123 committed Mar 17, 2023

Verified

This commit was signed with the committer’s verified signature.
FrederikBolding Frederik Bolding
1 parent f81bcf2 commit debd0cb
Showing 3 changed files with 81 additions and 1 deletion.
51 changes: 51 additions & 0 deletions .github/workflows/cdn_release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: AWS RUM CDN Release

on:
workflow_dispatch:

jobs:
publish_to_cdn:
name: Publish New Release
runs-on: ubuntu-latest
environment: cdn-prod-release
permissions: write-all
steps:
- name: Checkout AWS RUM Web Client Repository
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'

- name: Fetch AWS Credentials for Deployment
run: |
export AWS_ROLE_ARN=${{ secrets.ROLE }}
export AWS_WEB_IDENTITY_TOKEN_FILE=/tmp/awscreds
export AWS_DEFAULT_REGION=us-east-1
echo AWS_WEB_IDENTITY_TOKEN_FILE=$AWS_WEB_IDENTITY_TOKEN_FILE >> $GITHUB_ENV
echo AWS_ROLE_ARN=$AWS_ROLE_ARN >> $GITHUB_ENV
echo AWS_DEFAULT_REGION=$AWS_DEFAULT_REGION >> $GITHUB_ENV
curl -H "Authorization: bearer $ACTIONS_ID_TOKEN_REQUEST_TOKEN" "$ACTIONS_ID_TOKEN_REQUEST_URL" | jq -r '.value' > $AWS_WEB_IDENTITY_TOKEN_FILE
- name: Cache NPM modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Build Release
run: |
npm ci
npm run release
- name: Publish to CloudWatch RUM CDN
id: publish-cdn
run: |
chmod u+x .github/scripts/deploy.sh
.github/scripts/deploy.sh ${{ secrets.BUCKET }}
29 changes: 29 additions & 0 deletions .github/workflows/npm_deprecate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Deprecate NPM Version

on:
workflow_dispatch:
inputs:
version:
description: 'Deprecating version'
required: true
message:
description: 'Deprecation reason'
required: true
type: string

jobs:
deprecate_version:
name: Deprecate version
runs-on: ubuntu-latest
environment: cdn-prod-release
permissions: write-all
steps:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- name: Deprecate Version
run: npm deprecate aws-rum-web@${{ github.event.inputs.version }} ${{ github.event.inputs.message }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "aws-rum-web",
"name": "aws-rum-web-experimental",
"version": "1.13.0",
"sideEffects": false,
"description": "The Amazon CloudWatch RUM web client.",

0 comments on commit debd0cb

Please sign in to comment.