Skip to content

Built geolocate v2.0.11 #17

Built geolocate v2.0.11

Built geolocate v2.0.11 #17

name: Publish geolocate to npm on new tag
on:
push:
tags: [geolocate*]
permissions:
contents: read
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
registry-url: "https://registry.npmjs.org"
- run: npm install -g npm
- run: cd geolocate && npm ci
- run: cd geolocate && npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_PAT }}