Skip to content

Commit

Permalink
Add ids
Browse files Browse the repository at this point in the history
  • Loading branch information
redJ4y committed Aug 20, 2024
1 parent 640eb53 commit bc6a004
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
run: npm install

- name: Build
id: build_step
run: grunt build

- name: Complete
Expand All @@ -39,6 +40,7 @@ jobs:
aws-region: ${{ secrets.AWS_REGION }}

- name: Publish to S3 Pre-release
id: publish_s3
run: aws s3 sync ./dist ${{ secrets.AWS_PUBLISH_TARGET }}

- name: Deployment Complete
Expand Down Expand Up @@ -84,19 +86,19 @@ jobs:
"fields": [
{
"type": "mrkdwn",
"text": "*Branch:*\n${{ github.ref_name }}"
"text": "*Branch:*\n`${{ github.ref_name }}`"
},
{
"type": "mrkdwn",
"text": "*Node version:*\n${{ matrix.node-version }}"
"text": "*Node version:*\n`${{ matrix.node-version }}`"
},
{
"type": "mrkdwn",
"text": "*Build status:*\n${{ steps.build_step.outcome }}"
},
{
"type": "mrkdwn",
"text": "*Publish to bucket `${{ secrets.AWS_PUBLISH_TARGET }}`:*\n${{ steps.publish_s3.outcome }}"
"text": "S3 sync status:*\n${{ steps.publish_s3.outcome }}"
}
]
}
Expand Down

0 comments on commit bc6a004

Please sign in to comment.