Skip to content

Commit 6697e61

Browse files
authored
chore: use trusted publishers + bump version before release (#312)
1 parent 3acf535 commit 6697e61

File tree

6 files changed

+18
-10
lines changed

6 files changed

+18
-10
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ on:
55
release:
66
types: [published]
77

8+
permissions:
9+
id-token: write # Required for OIDC
10+
contents: read
11+
812
jobs:
913
release:
1014
runs-on: ubuntu-22.04
@@ -22,5 +26,3 @@ jobs:
2226

2327
- name: "Publish package on NPM"
2428
run: npm publish --access public
25-
env:
26-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.4.18
4+
5+
### Fixed
6+
7+
- Messaging (NATS/SQS) triggers now properly work with Serverless Containers #311
8+
39
## 0.4.17
410

511
### Added

examples/go/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "serverless-scaleway-functions",
3-
"version": "0.4.17",
3+
"version": "0.4.18",
44
"description": "Provider plugin for the Serverless Framework v3.x which adds support for Scaleway Functions.",
55
"main": "index.js",
66
"author": "scaleway.com",

shared/api/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const axios = require("axios");
22
const https = require("https");
33

4-
const version = "0.4.17";
4+
const version = "0.4.18";
55

66
const invalidArgumentsType = "invalid_arguments";
77

0 commit comments

Comments
 (0)