@flowfuse/driver-docker 2.32.0 → 2.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -10,9 +10,9 @@ jobs:
|
|
|
10
10
|
build:
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
steps:
|
|
13
|
-
- uses: actions/checkout@
|
|
13
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
14
14
|
- name: Use Node.js 24
|
|
15
|
-
uses: actions/setup-node@
|
|
15
|
+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
|
|
16
16
|
with:
|
|
17
17
|
node-version: 24
|
|
18
18
|
- name: Install Dependencies
|
|
@@ -8,11 +8,31 @@ jobs:
|
|
|
8
8
|
publish:
|
|
9
9
|
runs-on: ubuntu-latest
|
|
10
10
|
steps:
|
|
11
|
-
- uses: actions/checkout@
|
|
12
|
-
- uses: actions/setup-node@
|
|
11
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
12
|
+
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
|
|
13
13
|
with:
|
|
14
14
|
node-version: 24
|
|
15
15
|
- run: npm ci --omit dev
|
|
16
16
|
- uses: JS-DevTools/npm-publish@0fd2f4369c5d6bcfcde6091a7c527d810b9b5c3f # v4.1.5
|
|
17
17
|
with:
|
|
18
18
|
token: ${{ secrets.NPM_PUBLISH_TOKEN }}
|
|
19
|
+
|
|
20
|
+
notify-slack:
|
|
21
|
+
name: Notify about release failure
|
|
22
|
+
needs: [publish]
|
|
23
|
+
if: failure()
|
|
24
|
+
runs-on: ubuntu-latest
|
|
25
|
+
|
|
26
|
+
steps:
|
|
27
|
+
- name: Notify Slack
|
|
28
|
+
uses: FlowFuse/github-actions-workflows/actions/slack_notification@slack_notification/v1
|
|
29
|
+
with:
|
|
30
|
+
bot-token: ${{ secrets.SLACK_GHBOT_TOKEN }}
|
|
31
|
+
mode: channel
|
|
32
|
+
blocks: |
|
|
33
|
+
[
|
|
34
|
+
{ "type": "header", "text": { "type": "plain_text", "text": ":x: ${{ github.workflow }} workflow failed", "emoji": true } },
|
|
35
|
+
{ "type": "divider" },
|
|
36
|
+
{ "type": "section", "text": { "type": "mrkdwn", "text": "<${{ github.server_url }}/${{ github.repository }}/actions/workflows/release-publish.yml|${{ github.workflow }}> workflow failed to complete successfully." } },
|
|
37
|
+
{ "type": "section", "text": { "type": "mrkdwn", "text": "*Workflow run:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View>" } }
|
|
38
|
+
]
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
#### 2.33.0: Release
|
|
2
|
+
|
|
3
|
+
- Bump actions/checkout from 7.0.0 to 7.0.1 (#231)
|
|
4
|
+
- Bump actions/setup-node from 6.4.0 to 7.0.0 (#229)
|
|
5
|
+
|
|
6
|
+
#### 2.32.1: Release
|
|
7
|
+
|
|
8
|
+
- ci: Add slack notification to the release pipeline (#228)
|
|
9
|
+
|
|
1
10
|
#### 2.32.0: Release
|
|
2
11
|
|
|
3
12
|
- feat: Add Insights support with get-features and call-tool/read-resource methods (#226)
|