From d1dcb8fd9c95ccb82cc11f829154e62048a89d90 Mon Sep 17 00:00:00 2001 From: Tobias Schneider Date: Sun, 26 Jun 2022 02:05:31 +0200 Subject: [PATCH] change tag to latest --- .github/workflows/{publish-pre.yml => publish-main.yml} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename .github/workflows/{publish-pre.yml => publish-main.yml} (83%) 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