diff --git a/.github/workflows/publish-pre.yml b/.github/workflows/publish-main.yml similarity index 83% rename from .github/workflows/publish-pre.yml rename to .github/workflows/publish-main.yml index 8a59566..5f994f5 100644 --- a/.github/workflows/publish-pre.yml +++ b/.github/workflows/publish-main.yml @@ -1,4 +1,4 @@ -name: Publish (pre) +name: Publish (main) on: release: @@ -20,11 +20,11 @@ jobs: - name: Publish to npmjs env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - run: npm publish --tag pre --access public + run: npm publish --tag latest --access public - uses: actions/setup-node@v1 with: registry-url: https://npm.pkg.github.com/ - name: Publish to GPR env: NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} - run: npm publish --tag pre --access public \ No newline at end of file + run: npm publish --tag latest --access public \ No newline at end of file