Skip to content

Commit

Permalink
fix: gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
devthejo committed Dec 16, 2024
1 parent 39ec85d commit 5f8130e
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,21 @@ inputs:
outputs:
token:
description: 'The generated GitHub App token'
value: ${{ steps.main.outputs.token }}
expires_at:
description: 'Token expiration timestamp'
value: ${{ steps.main.outputs.expires_at }}
installation_id:
description: 'GitHub App installation ID'
value: ${{ steps.main.outputs.installation_id }}

runs:
using: 'node20'
pre: 'npm install -g yarn && yarn'
main: 'action.js'
using: 'composite'
steps:
- shell: bash
run: |
npm install -g yarn
yarn
- id: main
shell: node20
run: action.js

0 comments on commit 5f8130e

Please sign in to comment.