Skip to content

Commit

Permalink
workflow: test
Browse files Browse the repository at this point in the history
  • Loading branch information
warm-coolguy committed Feb 2, 2024
1 parent 0f15247 commit bcbbc4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ jobs:
node-version: 18.13.0
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: TAGS=$(node ./scripts/publishPackages); echo $TAGS
- run: echo "tags=$(node ./scripts/publishPackages)" >> $GITHUB_ENV
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- uses: EndBug/add-and-commit@v9
with:
author_name: Dataport Geo Bot
author_email: [email protected]
- run: |
echo $TAGS
for TAG in [$TAGS]
echo ${{ env.TAGS }}
for TAG in ${{ env.TAGS }}
do
git config user.name "Dataport Geo Bot"
git config user.email "[email protected]"
Expand Down

0 comments on commit bcbbc4c

Please sign in to comment.