Skip to content

Publish Raygun4JS to the pre-release environment #5

Publish Raygun4JS to the pre-release environment

Publish Raygun4JS to the pre-release environment #5

Workflow file for this run

name: Build & Publish Raygun4JS to the pre-release environment
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.16.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Grunt
run: npm install -g grunt
- name: Install node modules
run: npm install
- name: Build
run: grunt build
- name: Complete
run: echo Build successfully completed!
# - name: Configure AWS Credentials
# uses: aws-actions/configure-aws-credentials@v1
# with:
# aws-access-key-id: ${{ secrets.AWS_ACCESS_ID }}
# aws-secret-access-key: ${{ secrets.AWS_ACCESS_SECRET }}
# aws-region: ${{ secrets.AWS_REGION }}
#
# - name: Publish to S3 Pre-release
# run: aws s3 sync ./dist ${{ secrets.AWS_PUBLISH_TARGET }}
#
# - name: Deployment Complete
# run: echo A new version of Raygun4JS has been deployed to pre-release!
#
# - name: Notify Slack
# id: slack
# uses: slackapi/[email protected]
# env:
# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
#