Skip to content

Commit

Permalink
update name
Browse files Browse the repository at this point in the history
  • Loading branch information
feelepxyz committed Oct 24, 2023
1 parent 5447b22 commit aca15b0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
cache: npm
- name: Install dependencies
run: npm ci
- name: Generate provenance
run: DEBUG=* npm run generate --workspace=packages/cli -- README.md -o ../../provenance.sigstore.json
- name: Generate provenance statement
run: DEBUG=* npm run generate --workspace=packages/cli -- README.md -o ../../provenance-statement.json
- name: Upload artifact
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
with:
name: provenance.sigstore.json
path: provenance.sigstore.json
name: provenance-statement.json
path: provenance-statement.json
4 changes: 2 additions & 2 deletions packages/cli/src/commands/generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type Subject = {

export default class Generate extends Command {
static override description =
'Generate SLSA provenance information on supported cloud CI/CD vendors.';
'Generate SLSA provenance statement on supported cloud CI/CD vendors.';
static override examples = ['<%= config.bin %> <%= command.id %>'];

static override flags = {
Expand Down Expand Up @@ -56,7 +56,7 @@ export default class Generate extends Command {
const provenance = generateProvenance(subject, process.env);

if (flags['output-file']) {
bug(`Writing provenance to ${flags['output-file']}`);
bug(`Writing provenance statement to ${flags['output-file']}`);
await writeFile(
flags['output-file'],
JSON.stringify(provenance, null, 2)
Expand Down

0 comments on commit aca15b0

Please sign in to comment.