diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c66f2cb2..1b8d54b5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,5 +19,5 @@ jobs: - run: npm run build - uses: ./ with: - jose: key generate --alg ES256 - private-key: ./private.jwk.json + transmute: | + jose key generate --alg ES256 diff --git a/action.yml b/action.yml index 7a5fc1a2..1d47f86c 100644 --- a/action.yml +++ b/action.yml @@ -1,28 +1,19 @@ -name: 'Verifiable Credential Graph Actions' +name: "Transmute" + description: | - This action enabled Verifiable Credential Graph Operations. + The Transmute GitHub Action + inputs: - json: - description: | - A JSON Document (string). - require: true - neo4j-uri: + transmute: description: | - Neo4j Connection URL. - require: false - neo4j-user: - description: | - Neo4j User. - require: false - neo4j-password: - description: | - Neo4j Password. - require: false - + The transmute command to run. + outputs: json: - description: 'The output as json.' + description: "The output as json." + cbor: + description: "The output as cbor." runs: - using: 'node16' - main: 'dist/index.js' \ No newline at end of file + using: "node20" + main: "dist/index.js"