Skip to content

Commit

Permalink
attempt to fix my terrible js
Browse files Browse the repository at this point in the history
  • Loading branch information
eseidel committed Jul 25, 2024
1 parent 6ce023e commit febb66a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/publish_flutter_package/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ runs:
uses: actions/github-script@v6
with:
script: |
const core = require('@actions/core')
let pub_token = await core.getIDToken('https://pub.dev/')
core.setOutput('PUB_TOKEN', pub_token)
const core_mod = require('@actions/core')
let pub_token = await core_mod.getIDToken('https://pub.dev/')
core_mod.setOutput('PUB_TOKEN', pub_token)
- name: 📢 Authenticate
shell: ${{ inputs.shell }}
Expand Down

0 comments on commit febb66a

Please sign in to comment.