Skip to content

Commit

Permalink
Merge pull request #215 from JupiterOne/fix-workflow
Browse files Browse the repository at this point in the history
certain env vars were not getting set due to old workflow syntax issues
  • Loading branch information
behobu authored Jun 17, 2022
2 parents 3d78a8b + f8b3031 commit b1b7a2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
- name: Initialize Output
run: echo "::set-output name=didpublishnpm::false"
run: echo "didpublishnpm=false" >> $GITHUB_ENV

- name: Check out source code
uses: actions/checkout@v2
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
run: |
echo "//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}" > .npmrc
npm publish --access public ./dist
echo "::set-output name=didpublishnpm::true"
echo "didpublishnpm=true" >> $GITHUB_ENV
docker:
if: github.ref == 'refs/heads/main'
Expand Down

0 comments on commit b1b7a2b

Please sign in to comment.