-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4e1a4a5
commit 472c464
Showing
4 changed files
with
24 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,10 +17,19 @@ jobs: | |
node-version: 18.13.0 | ||
registry-url: https://registry.npmjs.org/ | ||
- run: npm ci | ||
- run: npm run publishPackages | ||
- run: TAGS=$(node ./scripts/publishPackages) | ||
- run: echo "$TAGS" | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
- uses: EndBug/add-and-commit@v9 | ||
with: | ||
author_name: Dataport Geo Bot | ||
author_email: [email protected] | ||
- run: | | ||
git config user.name "Dataport Geo Bot" | ||
git config user.email "[email protected]" | ||
for TAG_NAME in $TAGS; do | ||
git tag $TAG_NAME | ||
git push origin $TAG_NAME | ||
echo "Released and tagged: $TAG_NAME" | ||
done |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters