We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f27b38e commit 48a126dCopy full SHA for 48a126d
.github/workflows/demo.yml
@@ -5,6 +5,12 @@ jobs:
5
runs-on: ubuntu-latest
6
steps:
7
- uses: actions/checkout@v3
8
+ - uses: actions/setup-node@v3
9
+ with:
10
+ node-version: '16.16'
11
+ cache: 'npm'
12
+ - run: npm ci
13
+ - run: npm run build
14
- uses: ./ # Uses the action in the root directory
15
id: demo
16
with:
dist/post.cjs
@@ -5928,6 +5928,7 @@ async function post(core3, request2) {
5928
authorization: `token ${token}`
5929
}
5930
});
5931
+ core3.info("Token revoked");
5932
5933
5934
// post.js
0 commit comments