From 5b0b86cdda875e5ff17c976ad633ec5181f7a527 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Saba=C5=82a?= Date: Fri, 18 Jun 2021 15:00:28 +0200 Subject: [PATCH] Updated readme examples to latest version --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cb98461..cc7627a 100644 --- a/README.md +++ b/README.md @@ -20,13 +20,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: borales/actions-yarn@v2.0.0 + - uses: borales/actions-yarn@v2.3.0 with: cmd: install # will run `yarn install` command - - uses: borales/actions-yarn@v2.0.0 + - uses: borales/actions-yarn@v2.3.0 with: cmd: build # will run `yarn build` command - - uses: borales/actions-yarn@v2.0.0 + - uses: borales/actions-yarn@v2.3.0 with: cmd: test # will run `yarn test` command ``` @@ -49,7 +49,7 @@ _AUTH_TOKEN` - **Optional**. The token to use for authentication with the npm re To authenticate with, and publish to, a registry other than `registry.npmjs.org`: ```yml -- uses: borales/actions-yarn@v2.0.0 +- uses: borales/actions-yarn@v2.3.0 with: auth-token: ${{ secrets.NPM_TOKEN }} registry-url: someOtherRegistry.someDomain.net