-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
name: Build & Publish Raygun4JS to the pre-release environment | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
@@ -11,13 +9,13 @@ jobs: | |
|
||
strategy: | ||
matrix: | ||
node-version: [12.x] | ||
node-version: [20.16.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
|
@@ -33,21 +31,22 @@ jobs: | |
- 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 }} | ||
# - 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 }} | ||
# |