Skip to content

Commit bb0747d

Browse files
updates
1 parent 1b93f56 commit bb0747d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
2020
with:
21-
tag_name: "broyden_tag39"
22-
release_name: "broyden_release39"
21+
tag_name: "broyden_tag40"
22+
release_name: "broyden_release40"
2323
draft: false
2424
prerelease: false
2525

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "example-typescript-package",
3-
"version": "0.2.39",
3+
"version": "0.2.40",
44
"description": "",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",

src/github/organization.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export class Organization {
6969
}
7070

7171
async createOrUpdateOrganizationSecret(organization_name: string, variable_name: string, encrypted_variable_value: string, key_id: string): Promise<void> {
72-
await this._octokit.request(`GET /orgs/${organization_name}/actions/secrets/${variable_name}`, {
72+
await this._octokit.request(`PUT /orgs/${organization_name}/actions/secrets/${variable_name}`, {
7373
encrypted_value: encrypted_variable_value,
7474
key_id: key_id,
7575
visibility: 'private',

0 commit comments

Comments
 (0)