Skip to content

Commit b084847

Browse files
author
Test User
committed
Release v1.0.3
1 parent 65c1ef2 commit b084847

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32878,8 +32878,8 @@ const crypto = __importStar(__nccwpck_require__(6982));
3287832878
const fs = __importStar(__nccwpck_require__(9896));
3287932879
const path = __importStar(__nccwpck_require__(6928));
3288032880
const os = __importStar(__nccwpck_require__(857));
32881-
// Repository that hosts the auths CLI releases
32882-
const CLI_RELEASE_REPO = 'bordumb/auths';
32881+
// Repository that hosts the public auths CLI releases
32882+
const CLI_RELEASE_REPO = 'bordumb/auths-releases';
3288332883
/**
3288432884
* Classify a verification error string into a structured failure type.
3288532885
*/

dist/index.js.map

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

justfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ check-dist:
1818
ci: test build check-dist
1919

2020
# Cut a release: test, build, commit dist, tag, push
21-
# Usage: just release 1.0.2
22-
release VERSION: ci
21+
# Usage: just release 1.0.3
22+
release VERSION: test build
2323
npm version {{VERSION}} --no-git-tag-version
24-
git add package.json dist/
24+
git add package.json dist/ src/ .github/ justfile
2525
git commit -m "Release v{{VERSION}}"
2626
git tag "v{{VERSION}}"
2727
git push && git push origin "v{{VERSION}}"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@auths/verify-action",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "GitHub Action to verify commit signatures using Auths identity keys",
55
"main": "dist/index.js",
66
"scripts": {

src/__tests__/verifier.test.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ describe('getAuthsDownloadUrl', () => {
4141

4242
const url = getAuthsDownloadUrl('');
4343
expect(url).toBe(
44-
'https://github.com/bordumb/auths/releases/latest/download/auths-linux-x86_64.tar.gz'
44+
'https://github.com/bordumb/auths-releases/releases/latest/download/auths-linux-x86_64.tar.gz'
4545
);
4646
});
4747

@@ -51,7 +51,7 @@ describe('getAuthsDownloadUrl', () => {
5151

5252
const url = getAuthsDownloadUrl('');
5353
expect(url).toBe(
54-
'https://github.com/bordumb/auths/releases/latest/download/auths-macos-aarch64.tar.gz'
54+
'https://github.com/bordumb/auths-releases/releases/latest/download/auths-macos-aarch64.tar.gz'
5555
);
5656
});
5757

@@ -61,7 +61,7 @@ describe('getAuthsDownloadUrl', () => {
6161

6262
const url = getAuthsDownloadUrl('');
6363
expect(url).toBe(
64-
'https://github.com/bordumb/auths/releases/latest/download/auths-windows-x86_64.zip'
64+
'https://github.com/bordumb/auths-releases/releases/latest/download/auths-windows-x86_64.zip'
6565
);
6666
});
6767

@@ -71,7 +71,7 @@ describe('getAuthsDownloadUrl', () => {
7171

7272
const url = getAuthsDownloadUrl('0.5.0');
7373
expect(url).toBe(
74-
'https://github.com/bordumb/auths/releases/download/v0.5.0/auths-linux-x86_64.tar.gz'
74+
'https://github.com/bordumb/auths-releases/releases/download/v0.5.0/auths-linux-x86_64.tar.gz'
7575
);
7676
});
7777

@@ -97,7 +97,7 @@ describe('getAuthsDownloadUrl', () => {
9797

9898
const url = getAuthsDownloadUrl('');
9999
expect(url).toBe(
100-
'https://github.com/bordumb/auths/releases/latest/download/auths-macos-x86_64.tar.gz'
100+
'https://github.com/bordumb/auths-releases/releases/latest/download/auths-macos-x86_64.tar.gz'
101101
);
102102
});
103103

@@ -107,7 +107,7 @@ describe('getAuthsDownloadUrl', () => {
107107

108108
const url = getAuthsDownloadUrl('');
109109
expect(url).toBe(
110-
'https://github.com/bordumb/auths/releases/latest/download/auths-linux-aarch64.tar.gz'
110+
'https://github.com/bordumb/auths-releases/releases/latest/download/auths-linux-aarch64.tar.gz'
111111
);
112112
});
113113
});

0 commit comments

Comments
 (0)